Setup.py Installed Package Can't Be Imported
I created my first package with the following setup.py: from setuptools import setup, find_packages setup( name='mygn', version='0.1', packages=find_packages(exclude=['
Solution 1:
Another person trying to import with a similar issue
This was their solution:
chmod -R 775 /usr/local/lib/python2.6/dist-packages/
It seems like this person resolved their issue by making sure that their access rights allowed them to use files from the distribution package folder. I would probably troubleshoot by doing the same thing by making sure your file and it's directory are open to you. Not too sure what might be causing it outside of that.
Post a Comment for "Setup.py Installed Package Can't Be Imported"