python学习之如何删除已经安装的包

来源:互联网 发布:mysql 5.5 win10安装 编辑:程序博客网 时间:2024/05/28 23:12
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
0 0
原创粉丝点击