Python2 7和3 5雙版本共存和pip的使用

2022-06-05 20:00:15 字數 2014 閱讀 7264

安裝自不必多說,先裝2.7,再裝3.5.

說下安裝的目錄:py3.5和py2.7預設的安裝目錄是不一樣的,按預設的來就好,不用管。

python2.7: c:\python27

先安裝2.7再安裝3.5的好像是3.5的會替換到原來2.7新增到path的路徑,所以要自己在手動新增2.7的。

使用前,到 c:\python27  

將python.exe,pythonw.exe 改為python2.exe,pythonw2.exe

python.exe,pythonw.exe 改為python3.exe,pythonw3.exe

改完名後,就方便區分啟動了。

1.5.1 cmd命令列互動式

1.5.2 sublime指定版本執行

先按箭頭順序開啟untitled.sublime-build編輯

分兩次操作,寫入如下**(根據自己的實際路徑和python名更改cmd命令和路徑,注意路徑是'\\'

# python2

#

python2

# python3

#

python3

然後用ctrl+b執行的時候,就在tools-build system中選擇相應的版本即可

如我要用python2執行就選擇如圖

python2 -m pip install 模組名
# python3

python3 -m pip install 模組名
# python2

python2 -m pip --version

#pip 9.0.1 from c:\python27\lib\site-packages (python 2.7)

# python3

python3 -m pip --version

#

# python2

python2 -m pip list
# python3

python3 -m pip list
python2檢視list的時候,當提示如下:

deprecation: the default format will switch to columns in the future. you can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.

[list]

format=columns

解決完,list由左邊變成右邊的

python2 7與3 5中input的差別

在2.7中 input輸入的數值 raw input輸入的事字串 或者把輸入的內容用引號擴起來deathage 80 name raw input your name age input your age print hi,name,your age is age,now.print you can...

linux上python 2 7 公升級為 3 5

wegt https2.解壓包 tar zxvf python 3.5.2.tgz3.執行.configure cd python 3.5.2 configure4.編譯安裝make make make install5.驗證一下python版本,第一種命令是檢視當前設定舊版本的python版本2....

Python2 7版本下easygui安裝問題

2 將easygui.py檔案放到乙個資料夾內,我將這個資料夾取名為easygui。3 將easygui資料夾放到python資料夾下的lib site packages 下,即 c python27 lib site packages。此時,easygui.py存在於c python27 lib ...