一、使用easy_install
C:\Python27\Scripts 下有 easy_install.exe 。例如我要安装 beautifulsoup,可以从 cmd 进入该目录,直接运行:
easy_install beautifulsoup4
卸载库,可以用:
easy_install -m beautifulsoup4
更新包:
easy_install --upgrade beautifulsoup4
二、使用 pip
pip install beautifulsoup4
pip uninstall beautifulsoup4
三、源码安装
下载函数库,解压,移动到 C:\Python27\Lib\site-packages\ 下,从cmd 进入函数库文件夹,运行:
python setup.py build
python setup.py install
删除所安装的包,直接删除文件就好
时间: 2024-10-17 01:28:45