-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
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
pip install doesn't install local package fully. #4810
Comments
Is there a |
@cryvate |
This sounds like a general issue with how you're packaging your project (i.e., a problem in your |
This is whole setup.py :
@pfmoore |
Hi @eromoe! I suggest you run The right place to ask why it is so and how to fix it would be python-list (mailing list) or #python on Freenode (IRC); this issue tracker is definitely not the right place. :) None the less, some things I'd like to point out:
The subpackages of textminer are not being installed. You should probably just do
Please don't do this. https://packaging.python.org/discussions/install-requires-vs-requirements/ |
Description:
My project structure
basin-textminer:
basin-textminer/textminer :
If I used
pip install -e basin-textminer/
, I canfrom textminer.db import xxxx
But if I used
pip install basin-textminer/
,from textminer.db import xxxx
would get errorImportError: No module named db
My setup.py doesn't exclude any folders, only assign packages:
The text was updated successfully, but these errors were encountered: