Python 安装与命令行参数 ,Pip 的命令参数--官方文档
2021-05-05 16:27
标签:新版 sea 令行 rem 位置 upgrade require com print 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、安装包 : 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 命令时,通过 Python 安装与命令行参数 ,Pip 的命令参数--官方文档 标签:新版 sea 令行 rem 位置 upgrade require com print 原文地址:https://www.cnblogs.com/ecprodoo/p/13192364.htmlpip install SomePackage # 最新版本
pip install SomePackage==1.0.4 # 指定版本
pip install ‘SomePackage>=1.0.4‘ # 最小版本
升级包: 升级指定的包,通过使用==, >=, , pip install --upgrade SomePackage
-i
参数指定 pip 源 :pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple
文章标题:Python 安装与命令行参数 ,Pip 的命令参数--官方文档
文章链接:http://soscw.com/index.php/essay/82804.html