Windows下Python安裝併為pip配置阿里映象
pip: 是 Python 包管理工具,該工具提供了對Python 包的查詢、下載、安裝、解除安裝的功能。
目前如果你在 python.org 下載最新版本的安裝包,則是已經自帶了該工具。
一、Python安裝
1.下載Python安裝包
地址:https://www.python.org/downloads/release/python-391/
32位系統下載綠色選框,64位凶下載紅色選框。
2.安裝Python
下載完成後安裝,勾選Add python x.xx to PATH,點選Install Now就可以。
點選close就可以
3.檢視安裝結果
#檢視Python版本
python -V
#檢視pip版本
pip -V
二、pip配置阿里源映象
1.使用檔案配置
配置檔案位置:C:\Users\你的電腦登入使用者名稱\AppData\Roaming資料夾
新建pip.ini配置檔案如下圖所示:
可以輸入pip -V檢視你的目錄,如圖所示
C:\Users\mayn\AppData\Roaming
檔案內容
[global]
index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
2.cmd中使用命令配置
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
相關文章
- python配置pip映象Python
- windows下安裝pip,強制升級pip,安裝tensorflowWindows
- python 使用pip安裝使用國內映象加速下載安裝包的方法Python
- windows 安裝python後pip安裝路徑問題WindowsPython
- pip安裝源配置
- pip安裝python庫時使用國內映象資源加速下載過程Python
- centos7下安裝Python的pipCentOSPython
- windows下Tomcat安裝配置WindowsTomcat
- pip離線安裝和配置pypi國內加速映象實踐
- Windows10上pip安裝Windows
- Python pip的安裝及解除安裝Python
- python怎麼安裝pip?Python
- CentOS下安裝pip 18.0CentOS
- ubuntu更換安裝源和pip映象源Ubuntu
- 如何在windows下安裝pythonWindowsPython
- 【Mysql】Windows下安裝和配置MysqlMySqlWindows
- Windows下Scoop安裝、配置與使用WindowsOOP
- 阿里雲上安裝pip3(Ubuntu)阿里Ubuntu
- python (pip)安裝talib報錯Python
- python必須安裝pip嗎Python
- Python 下載安裝和配置Python
- Windows10 下caffe-Windows安裝與配置Windows
- pip 換成國內阿里映象源阿里
- centos python2.x環境下正確安裝python3並且配置pip3CentOSPython
- pip 配置與更換映象源
- solr在windows下的安裝及配置SolrWindows
- Windows下dlib庫python安裝(CUDA)WindowsPython
- windows下python3.8安裝_01WindowsPython
- centos7安裝社群版docker並配置阿里雲映象加速CentOSDocker阿里
- python的pip快速安裝程式碼Python
- 安裝 Docker-yum-阿里雲映象Docker阿里
- 安裝pip
- pip 安裝
- python中的pip的安裝以及通過pip命令對selenium進行解除安裝和安裝Python
- 配置阿里雲映象—MongoDB 映象阿里MongoDB
- 下載、安裝、配置 android-studio-2021.1.1.22-windowsAndroidWindows
- windows下安裝jdk+tomcat+maven並配置WindowsJDKTomcatMaven
- (轉)Windows下安裝Docker, GitBash環境配置WindowsDockerGit