Closed suhithr closed 8 years ago
@suhithr I didn't quite understand what you meant. Can you please clarify?
Building the file from source with a Python 2 interpreter is not possible, because some packages used only exist in Python 3. For example in progressbar.py the call is from builtins import range
. To call this package in Python 2 we must call from __builtin__ import range
. This is because the __builtin__
module was renamed to builtins
in Python 3. Check this link
By build you mean install the package?
Build from source is what I was referring to, such as python3 setup.py install
. Installing from pip works even without Python 3.
It's working for me using Python 2 as well.
Closing because it worked for me as well, I'm not sure if it has anything to do with installing it after installing Python 3
Need a python 3 environment to develop, due to many packages having different names in Python 2 and 3. Like the
__builtin__
package. Please update the documentation.