pip 安装参简介
Posted breakcircle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip 安装参简介相关的知识,希望对你有一定的参考价值。
1.python -m pip 和 pip安装的区别:
python -m pip :可以区分python版本进行安装;切换到某个python安装路径下,执行python.exe -m pip进行安装;
python.exe -m pip install requests
2. --user 为当前用户安装,安装路径在%APPDATA%
--user Install to the Python user install directory for your platform. Typically ~/.local/, or
%APPDATA%Python on Windows. (See the Python documentation for site.USER_BASE for full
details.)
3.使用固定源安装,官方的速度太慢,使用其他源进行下载,如清华镜像,requests是需要安装的包;
python.exe -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host https://pypi.tuna.tsinghua.edu.cn requests
以上是关于pip 安装参简介的主要内容,如果未能解决你的问题,请参考以下文章
Docker和pip安装:避免在已安装某些软件包时安装所有软件包
Android 逆向类加载器 ClassLoader ( 类加载器源码简介 | BaseDexClassLoader | DexClassLoader | PathClassLoader )(代码片段
python开发简介:Conda,Pip虚环境搭建配置与工程基础实践