We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Here is the error message
--------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) <ipython-input-1-b4cae4c6a1da> in <module>() 1 from bw2python import ponames 2 from bw2python.bwtypes import PayloadObject ----> 3 from bw2python.client import Client 4 /opt/conda/lib/python3.6/site-packages/bw2python/client.py in <module>() 6 import threading 7 ----> 8 from bwtypes import * 9 10 ENTITY_PO_NUM = (0, 0, 0, 50) ModuleNotFoundError: No module named 'bwtypes'
Change line 8 in bw2python/client.py to from bw2python.bwtypes import * solves the problem.
from bw2python.bwtypes import *
I was using python 3.6.2 in Ubuntu.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is the error message
Change line 8 in bw2python/client.py to
from bw2python.bwtypes import *
solves the problem.I was using python 3.6.2 in Ubuntu.
The text was updated successfully, but these errors were encountered: