Removing python module installed in develop mode

前端 未结 3 1404
时光说笑
时光说笑 2021-01-30 00:28

Hi 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

相关标签:
3条回答
  • 2021-01-30 01:15

    Use the --uninstall or -u option to develop, i.e:

    python setup.py develop --uninstall
    

    This will remove it from easy-install.pth and delete the .egg-link. The only thing it doesn't do is delete scripts (yet).

    0 讨论(0)
  • 2021-01-30 01:17

    I have had a similar problem to this before. What I did was I loaded up the Python shell, imported the module and then printed its __file__ attribute. From there I would just remove the folder or file that was being associated.

    What you may want to look into is using virtualenv this system allows you to create a instance of python separate from your system. Any modules you install or use in this instance are self contained including the version of the module.

    I keep all my projects now inside of there own contained virtualenv, which allows me to install and use whatever modules I want without worrying about screwing up modules from other projects.

    0 讨论(0)
  • 2021-01-30 01:25

    Edit easy-install.pth in your site-packages directory and remove the line that points to your development version of that package.

    0 讨论(0)
提交回复
热议问题