将pip的下载源永久切换至阿里巴巴开源镜像站
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/\
将pip的下载源永久切换至清华开源镜像站
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip常用操作
python -m pip install --upgrade pip 升级pip
pip --version 查看pip版本
pip install 第三方包名字 下载第三方工具包
pip install 第三方包名字 --upgrade 升级第三方工具包
pip uninstall 第三方包名字 卸载第三方工具包
pip list 查看下载的所有第三方工具包
pip install 第三方包名字 -i https://pypi.tuna.tsinghua.edu.cn/simple 临时使用镜像源
pip install wheel
pip install numpy
pip install pandas
pip install jupyter notebook
或者 pip install wheel numpy pandas jupyter notebook
pip install opencv-python