登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
easy_install和pip都是用来下载安装Python一个公共资源库PyPI的相关资源包的 假设你已经安装了 Python。 1. 安装easy_install 1.1在本地文件夹下创建以下python脚(假如为downez.py) import os file_name = ‘ez_setup.py’ from urllib import urlopen with open(file_name, ‘wb‘) as f: f.write(data.read()) os.system(‘python %s’ % (os.path.join(os.getcwd(),file_name))) 1.2然后打开命令提示符(运行cmd) 在cmd中找到存放downez.py脚本目录,并运行脚本(方法如下截图)
会在此目录下出现ez_setup.py脚本 1.3安装easy_install 运行python ez_setup.py,会把easy_install安装到python的安装目录下的Scripts文件夹(一般路径为例如E:\Program Files\python27\Scripts) 2 安装pip 在命令提示符中找到easy_install,然后运行easy_install pip 会有提示你pip安装成功 3 安装.whl格式安装包 比如安装numexpr安装包(下载地址:http://www.lfd.uci.edu/~gohlke/pythonlibs/),下载适合你版本和操作系统的版本。然后在命令行中运行:pip install E:\Python\numexpr-2.4.3-cp27-none-win32.whl(我将whl下载到了E:\Python\目录下)
参考资料:
|