1

pip freeze result show:

-e [email protected]:Tallmad/zeus@6155c80f5b87cba0aeb8c1bfb6fc6b6dd86b0fa8#egg=zeus-dev

It fails:

pip uninstall [email protected]:Tallmad/zeus@6155c80f5b87cba0aeb8c1bfb6fc6b6dd86b0fa8#egg

4
  • Delete your virtualenv and start over: deactivate; rmvirtualenv <current-venv>; mkvirtualenv <current-venv> If you are not using virtualenvwrapper, consider adding this to your stack now: doughellmann.com/projects/virtualenvwrapper Commented Oct 12, 2012 at 15:08
  • There are many other packages in my virtualenv. And I just want to uninstall my project while remain others Commented Oct 12, 2012 at 16:07
  • Try running the install again with --record to get a list of all the files it touches Commented Oct 12, 2012 at 17:49
  • 1
    Start here: google.com/search?q=virtualenv+uninstall+git+package End up here: stackoverflow.com/questions/8926566/… Commented Oct 12, 2012 at 19:01

2 Answers 2

2

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

Sign up to request clarification or add additional context in comments.

2 Comments

I think you could've skipped Step 1.
I've tried skipping Step 1, but it didn't work. So Step 1 cannot be skipped
0
  1. install again with --record to store installing files.

    python setup.py install --record install.log

  2. manually remove those files from the record file

    xargs rm -rf < install.log

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.