-
Notifications
You must be signed in to change notification settings - Fork 19
pip3 install didn't put adafruit_ds3231.py in site-packages #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
this isnt too surprising - we havent tested it because on linux you tend to use the built in RTC support |
What OS and OS version are you using? |
Might just be a case issue here: https://github.com/adafruit/Adafruit_CircuitPython_DS3231/blob/master/setup.py#L59 |
yes, my sys.path has that directory. i already have bme280, and tsl2561 py modules installed (and tested). |
I think it's just case on the name. PR incoming:
|
lowercase module name in setup.py (fixes #12)
follow-up: shouldn't pip3 complain/warn a package was specified but no package file is created in the filesystem? (it's a standard configuration management post-install check) |
did: pip3 install adafruit-circuitpython-ds3231
and: pip3 install --upgrade adafruit-circuitpython-ds3231
got: adafruit_circuitpython_ds3231-2.1.1.dist-info/ and its contents
but: couldn't 'import adafruit_ds3231' because there was no adafruit_ds3231.py in site-packages/
strange. tried to figure it out. then gave up and just grabbed a copy from here and put it in site-packages.
import (and the rest) works now.
The text was updated successfully, but these errors were encountered: