You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
commands will install the module but it is not accessible from python 2.7. Error received:
>>> import ast2json
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named ast2json
I tried numerous path and PYTHONPATH manipulations to make the library accessible. I used sudo and chmod to ensure access permissions to the install directory. I have installed dozens of other code modules this way from git with no problem. The code does NOT install from source either, i.e. downloading from GitHub and running
python setup.py install
from the ast2json root directory, does NOT allow it to be used. I can import the local source code and call "import ast2json" successfully, but this is less than ideal.
The text was updated successfully, but these errors were encountered:
There's something wrong with the pip setup for this module.
pip install git+git://github.com/Psycojoker/ast2json.git
and
pip install ast2json
commands will install the module but it is not accessible from python 2.7. Error received:
I tried numerous path and PYTHONPATH manipulations to make the library accessible. I used sudo and chmod to ensure access permissions to the install directory. I have installed dozens of other code modules this way from git with no problem. The code does NOT install from source either, i.e. downloading from GitHub and running
python setup.py install
from the ast2json root directory, does NOT allow it to be used. I can import the local source code and call "import ast2json" successfully, but this is less than ideal.
The text was updated successfully, but these errors were encountered: