Reputation: 2181
pip freeze result show:
-e [email protected]:Tallmad/zeus@6155c80f5b87cba0aeb8c1bfb6fc6b6dd86b0fa8#egg=zeus-dev
It fails:
pip uninstall [email protected]:Tallmad/zeus@6155c80f5b87cba0aeb8c1bfb6fc6b6dd86b0fa8#egg
Upvotes: 1
Views: 5630
Reputation: 61
install again with --record
to store installing files.
python setup.py install --record install.log
manually remove those files from the record file
xargs rm -rf < install.log
Upvotes: 0
Reputation: 2181
I've solved it. Two steps:
Step 1: I install my project 'zeus'
python setup.py install
Setp 2: uninstall it:
pip uninstall zeus
Done
Upvotes: 2