.whl
.whl 格式本质上是一个编译后的压缩包,用于python模块的安装。
安装方法: pip install xxx.whl
升级方法: pip install -U xxx.whl
PIP
pip是目前Python包管理的事实标准,被用作 easy_install
的替代品。
pip可以利用requirements.txt来实现依赖的安装。
pip支持SVN/GIT等主流的VCS系统,可以直接从gz或者zip压缩包安装。
Upgrade PIP
python -m pip install -U pip
Installing Packages
pip supports installing from PyPI,version control, local projects, and directly from distribution files.
例:从PyPI中安装
pip install SomePackage # last version
pip install SomePackage==1.0.4 #specific version
Requirements Files
此文件中包含要安装的项目。
所有评论(0)