且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Python命令

更新时间:2022-10-13 17:18:17

1.安装:
python setup.py install

2.卸载:
python setup.py install --record files.txt
cat files.txt | xargs rm -rf 
删除对应目录文件:
sudo rm $(cat install.record)

3.其他方法1:
sudo pip uninstall <package name>

4.其他方法2:
for i in $(less install.record); 
sudo rm $i; 
done; 

Python egg学习

http://www.worldhello.net/2010/12/08/2178.html


本文转自 念槐聚 博客园博客,原文链接:http://www.cnblogs.com/haochuang/archive/2012/03/13/2393793.html,如需转载请自行联系原作者