Python學習筆記:(2-3)pip

pip下載
python在下載后會默認安裝pip,如果沒有安裝則在CMD(命令提示符)中進入Python安裝目錄下的Scripts路徑,執(zhí)行
easy_install.exe pip
安裝pip

然后輸入pip install + 包名 下載包,下面以opencv為例
pip install opencv-python

安裝完成

pip換源
在安裝的時候如果因為下載速度慢可以嘗試更換國內的鏡像源
??阿里云?http://mirrors.aliyun.com/pypi/simple/?
??中國科技大學?https://pypi.mirrors.ustc.edu.cn/simple/?
??豆瓣(douban)?http://pypi.douban.com/simple/?
??清華大學?https://pypi.tuna.tsinghua.edu.cn/simple/?
??中國科學技術大學?http://pypi.mirrors.ustc.edu.cn/simple/
在user目錄中創(chuàng)建一個pip目錄,如:C:\Users\xx\pip,新建文件pip.ini,內容如下
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
現(xiàn)在再下載速度會有明顯提升
pip卸載包
在CMD中輸入pip uninstall +?包名?下載包
以opencv為例
pip uninstall opencv-python
參考文章:
python實現(xiàn)opencv學習一:安裝、環(huán)境配置、工具????https://blog.csdn.net/u011321546/article/details/79499598
python - pip換源,更換pip源到國內鏡像????https://blog.csdn.net/xuezhangjun0121/article/details/81664260
pip的安裝,更新,卸載模塊以及使用方法 python????https://blog.csdn.net/Winterto1990/article/details/47455405