zoukankan      html  css  js  c++  java
  • python setup.py uninstall

    I have installed a python package with python setup.py install

    How do I uninstall it?

    =================================================================

    You need to remove all files manually, and also undo any other stuff that installation did manually.

    If you don't know the list of all files, you can reinstall it with the --record option, and take a look at the list this produces.

    To record list of installed files, you can use:

    python setup.py install --record files.txt
    

    Once you want to uninstall you can use xargs to do the removal:

    cat files.txt | xargs rm -rf




    from: http://stackoverflow.com/questions/1550226/python-setup-py-uninstall
  • 相关阅读:
    第8周课下作业1(补)
    第八章课下测试
    POJ
    POJ
    HDU
    UVa
    UVa
    CodeForces
    ZOJ
    LightOJ
  • 原文地址:https://www.cnblogs.com/pinganzi/p/5670654.html
Copyright © 2011-2022 走看看