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
pip uninstall does not remove *-nspkg.pth for packages installed in editable mode.
I have a package a1 which declares a namespace package.
a1
pip install -e a1/ creates a1-nspkg.pth in site-packages as well as a1.egg-link.
pip install -e a1/
a1-nspkg.pth
a1.egg-link
pip uninstall a1 removes a1.egg-link but leaves a1-nspkg.pth behind.
pip uninstall a1
develop
install --single-version-externally-managed
The text was updated successfully, but these errors were encountered:
Duplicate of #4176.
Sorry, something went wrong.
No branches or pull requests
Description:
pip uninstall does not remove *-nspkg.pth for packages installed in editable mode.
What I've run:
I have a package
a1
which declares a namespace package.pip install -e a1/
createsa1-nspkg.pth
in site-packages as well asa1.egg-link
.pip uninstall a1
removesa1.egg-link
but leavesa1-nspkg.pth
behind.See also
develop
andinstall --single-version-externally-managed
are not compatible with each other for namespace packages setuptools#250 (comment)The text was updated successfully, but these errors were encountered: