一、
python 安装easy_install和pip
做个记录
easy_install和pip都是用来下载安装Python一个公共资源库PyPI的相关资源包的
首先安装easy_install
下载地址:https://pypi.python.org/pypi/ez_setup
解压,安装.
python ez_setup.py
安装好easy_install 之后 再安装pip
下载地址:https://pypi.python.org/pypi/pip
解压,安装.
python setup.py install
设置操作系统环境变量,安装目录在python主目录下Scripts下;设置完成后,注意重启CMD命令窗口才能生效。
二、
下载.whl包
先pip install wheel
之后pip install 包名字.whl 即可安装某模块包
到哪找.whl文件?
http://www.lfd.uci.edu/~gohlke/pythonlibs/