Removing python module installed in develop mode

前端 未结 3 1406
时光说笑
时光说笑 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).

提交回复
热议问题