zhaobig 2020-06-25
python 解释器:
1、Python 命令行参数 --官方文档:https://docs.python.org/zh-cn/3/using/cmdline.html#options-you-shouldn-t-use
2、在Windows上使用 Python :https://docs.python.org/zh-cn/3/using/windows.html
=====================================================================
pip 包管理工具。安装后的包放置位置,默认是:X:\Python安装位置\Lib\site-packages
1、列出已安装的包 : pip list ;查看可升级的包:pip list -o
2、显示安装包信息 : pip show ; 查看指定包的详细信息: pip show -f SomePackage
3、安装包 :
pip install SomePackage # 最新版本 pip install SomePackage==1.0.4 # 指定版本 pip install ‘SomePackage>=1.0.4‘ # 最小版本升级包: 升级指定的包,通过使用==, >=, <=, >, < 来指定一个版本号。
pip install --upgrade SomePackage
4、卸载包: pip uninstall SomePackage
5、搜索包 :pip search SomePackage
6、生成requirements.txt文件 : pip freeze > requirements.txt
安装requirements.txt依赖 : pip install -r requirements.txt
@@@@@@@@@@@@@@@#######################
pip 的下载源的设置:(Windows10/201X)
使用 pip 命令时,通过 -i
参数指定 pip 源 :
pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple