-
pip 是 Python 包管理工具,提供了对Python 包的查找、下载、安装、卸载的功能。
-
pip 程序的目录:对于Windows系统,在*python安装目录\Lib\site-packages* 下,如果没有将pip安装到环境变量中,则需要在终端 cd 到该目录下执行pip命令。
-
CMD窗口输入
pip install -h
或pip help install
可以查看pip install的帮助文档。 -
实用参数值
参数 功能 -t <dir> 指定安装目录。Install packages into <dir>. By default this will not replace existing files/folders in<dir> -i <url> 指定下载来源的URL。This should point to a repository compliant with PEP 503 (the simple repository API) or a local directory laid out in the same format. -
可靠的镜像URL,用 -i 参数连接,在国内下载速度会比去官网下载快很多
来源 URL 清华: https://pypi.tuna.tsinghua.edu.cn/simple 豆瓣: http://pypi.douban.com/simple 使用时像这样,一行搞定。
pip install chardet -t D:\Pycharm\venv\Lib\site-packages\ -i https://pypi.tuna.tsinghua.edu.cn/simple
网友评论