python 模块安装,pip/easy_install

来源:互联网 发布:起名软件生辰八字 编辑:程序博客网 时间:2024/04/28 03:20

 在使用python的时候,需要依赖其他第三方模块时,需要下载安装,让python环境能找到依赖的模块;

pip.exe  和 easy_install.exe 在python安装包中已经有了;在目录Pthon 安装目录下的 Scripts ,记得把目录加入path

easy_python 官方网址:http://peak.telecommunity.com/DevCenter/EasyInstall#installing-easy-install

简单应用:


easy_install SQLObject  easy_install -f http://pythonpaste.org/package_index.html SQLObject</pre><br>   pip 官方文档:https://pip.pypa.io/en/stable/installing/ pip install SQLObject