I was trying the python packaging using setuptools and to test I installed the module in develop mode.
i.e
python setup.py develop
This has added my modules directory to sys.path. Now I want to remove the module. Is there any way to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the
--uninstallor-uoption todevelop, i.e:This will remove it from easy-install.pth and delete the .egg-link. The only thing it doesn’t do is delete scripts (yet).