02-01 Python 安装与pip
Posted Leofighting
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了02-01 Python 安装与pip相关的知识,希望对你有一定的参考价值。
Python安装
安装包下载:Python官网
Python和PyCharm环境安装配置
pip 依赖管理
Python3 的 3.4 版本开始,pip 被直接包括在 Python 的安装包内
pypi-pip包管理网站
Python 项目中必须包含一个 requirements.txt 文件,用于记录所有依赖包及其精确的版本号,以便其他人在新环境中部署:
# 打包
pip freeze > requirements.txt
# 在新环境中安装
pip install -r requirements.txt
常用国内 pip 源
- 阿里云:http://mirrors.aliyun.com/pyp...
- 豆瓣:http://pypi.douban.com/simple/
- 清华大学:https://pypi.tuna.tsinghua.ed...
- 中国科学技术大学:http://pypi.mirrors.ustc.edu....
- 华中科技大学:http://pypi.hustunique.com/
生成/安装 requirements.txt 文件
# 生成
pip freeze > requirements.txt
# 安装
pip install -r requirements.txt
以上是关于02-01 Python 安装与pip的主要内容,如果未能解决你的问题,请参考以下文章