AttributeError: module 'tibber' has no attribute 'Account' #59
Replies: 1 comment
-
|
Thanks for bringing this up. It definitely might be useful for others to know. For others with the same problem, it's also worth checking that you're installing # (This is within the activated venv)
python3 -m pip install --upgrade tibber.pyYour solution of specifying the specific version will also work. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Testing the newer version of tibber.py, I ran immediately into that issue. After some tinkering, I realized that pip install tibber was not landing on version 0.6.0.
Note: I work with macOS Sequoia, and had to install tibber in a virtual environment (pip3 install reports that "This environment is externally managed"). In order to get the right version, I had to use:
python3 -m venv path/to/venv
source path/to/venv/bin/activate
python3 -m pip install tibber.py==0.6.0
Maybe good for others to know.
Beta Was this translation helpful? Give feedback.
All reactions