python多版本共存

1.0 下載Python2.7x和Python3.5x版本

2.0 安裝Python

3.0 配置環境變量,分別添加至path路徑

4.0 只修改Python27文件中的.exe文件(這樣系統默認爲Python3.5)

將python.exe修改成python2.exe 
這裏寫圖片描述python

5.0 如何在cmd中分別調用Python2.7和Python3.5

5.1 輸入Python2 調用Python2.7版本

這裏寫圖片描述

5.2輸入Python 調用Python3.5版本

這裏寫圖片描述

6.0 使用pip安裝科學棧如numpy、pandas等

6.1 爲Python2.7版本安裝科學棧

查看已安裝科學棧狀況和版本windows

python2 -m pip list 查看 python2 -m pip install --upgrade pip 更新 python2 -m pip install numpy 安裝

這裏寫圖片描述

6.2 爲Python3.5版本安裝科學棧

查看已安裝科學棧狀況和版本ide

pip list
pip install --upgrade pip pip install numpy

這裏寫圖片描述

原文地址:https://blog.csdn.net/dream_an/article/details/51248736ui

相關文章
相關標籤/搜索