python降低版本
㈠ linux編譯安裝python版本3.5變成2.7,怎麼辦
系統默認自帶2.7,要運行python3
,終端運行python3就行了,千萬別把系統默認python版本改成3,後果自負
直接用
apt-get
安裝python3
Python多個版本是可以和諧共處的。
㈡ 如何把python降級到2.5.x
方法:
通過macports按照python2.5x 和python_select
sudo port install python25
sudo port install python_select
接著sudo python_select python25
OK,然後直接運行python檢查版本
㈢ 如何降低python的版本
最近在下載tensorflow的時候出現了如下圖所示的情況:Could not find a version that satisfies the requirement tensorflow
相關推薦:《Python入門教程》
經過一番查找資料,發現,原來在2019年,TensorFlow還不支持python3.7,所以,迫於無奈,我只能乖乖把python的版本退回到3.6版本,具體步驟也很簡單。就是打開anaconda prompt,然後輸入conda install python=3.6,然後等待提示(y/n),輸入y,等待十幾分鍾,就會提示done,這樣的話,就表示python3.7已經退回到python3.6了。
python學習網,大量的免費python視頻教程,歡迎在線學習!
㈣ 電腦上新下載了python3.8,如何將jupyter的內核切換為這個新安裝的3.8版本
切換jupyter的內核是不行的,因為jupyter雖然是個集成環境,但是它同時是python的一個包中的組成部分,所以只能在python3.8中另外下載安裝notebook了;
因為,對應本題,jupyter所在的包notebook是安裝在python舊版本的,不一定與python3.8新版本相兼容。
在python3.8中安裝notebook的操作方法,如下:
打開你的python3.8環境(比如miniconda環境,或者自己手工配置環境變數),檢查一下,運行以下兩個命令之一然後exit()
python
python3
看一下版本是3.x
確認是3.8版本之後,
pip install notebook
或者
pip3 install notebook
然後就可以在新環境中使用jupyter notebook了
㈤ 怎麼將IDLE從2.7版本改為3.3版本
如何更改默認的python版本
在wingIDE中的菜單中有個project菜單項,它的子菜單中有project properties項,點擊會顯示項目屬性對話框,選擇Environment頁,界面上有python path的設置項,選中custom後再點擊Insert按鈕,在選擇框中輸入(或者選擇)你要的python2.7目錄(例如C:python2.7)就行了。
2. wing在設置里可以在路徑里指定python2.7。你找一下設置。我以前設置過。
另外你也可以改注冊表。
在HKEY_class_root里找到兩個注冊項
Python點CompiledFile
Python點File
將其中的子項shell的open里的路徑改成2.7的路徑。
後面還有幾個Interpreter,順便也改了。
3. 如何更改默認的python版本
更改python的環境變數路徑為python3版本我們在學課程時,一般最先會安裝python3.5版本,之後在安裝了Anaconda之後,可能選擇了python2.7版本,之後windows系統的默認python,環境變數的python路徑會使得後安裝的版本優先,所以會使得python變成2.7版本,此時只需要把path中的Anaconda路徑刪除掉,python的默認路徑就回到最初的3.5版本。
㈥ 如何將python中的tcl版本降到8.4
降級是沒有辦法的,只能是安裝舊的版本,或者是另外安裝
初學Python,感覺什麼都不會。在Linux下安裝了一個python1.5.2(隨便裝的一個版本,現在都有2.6了)
前幾天在互動式環境下練習了一下基本的語句。發現有些東西要用到Tck/tk的圖形功能。就下了個Tcl8.4.13和tl8.4.14。安裝之後發現編譯用到Tcl/tk之類的東西的時候就提示:
No mole named _tkinter
嘗試import Tkinter出現同樣的錯誤。
整了半天沒找到原因在哪裡,網上索羅看到一些需要-dev..什麼的。因為對linux不熟悉,剛用沒幾天。很多東西看不明白。有些解釋太過專業。我這個新手貌似還跟不上。
後來看到一些people說需要先裝Tcl/tk,然後修改python的setup.dist文件的一些東西(主要是注釋項 )再裝python
於是打算準備把python又裝一遍
用find命令在我的python文件包里沒有找到Setup.dist.只有Setup,Setup.in,Setup.local應該是版本不同的原因吧。這幾個文件里的內容都差不多,但是具體每個的用途當時沒有明白。
嘗試修改Setup文件里的這一段的內容:
# *** Always uncomment this (leave the leading underscore in!):
_tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
-I/usr/local/include \
......
# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
-L/usr/local/lib \
# *** Uncomment and edit to reflect your Tcl/Tk versions:
-ltk8.4 -ltcl8.4 \
......
# *** Always uncomment this; X11 libraries to link with:
-lX11
最後安裝python
./configure
make
make install
終於成功了。
教訓是深刻的,在這個上面浪費了一大堆的時間。其實在python 的README文件裡面說的很清楚。包括Setup,Setup.o的作用等等。安裝Tcl/tk需要修改的選項之類的其實注釋的蠻清楚的。
所以安裝的時候看看幫助文件是很必要的。
還有就是搜索問題的時候應該多一些條理,不能蒙頭就搜。
㈦ 如何更換python版本
1、如果你的電腦上裝的是Python3.6.0和Python3.7.0,並且你先裝的Python3.6.0,後裝的Python3.7.0;那麼它將默認的是Python3.7.0。
在cmd中輸入命令:
where python 可以查看python安裝的位置以及版本號
python 查看默認使用的python以及版本號是多少
相關推薦:《Python基礎教程》
2、如果你現在想使用Python3.6.0的話,該怎麼做呢?
找到你當初配置Python環境變數的Path,點擊右下角的"編輯"。
3、進入下圖
4、你只需將Python3.6.0的Path選中--->點擊右側的"上移",即可將Python3.6.0的環境變數上移到前面,這樣默認的就會是Python3.6.0了!
注意!!!
上移後,將之前的cmd關閉,再重新打開一個cmd,輸入python,即可切換到Python3.6.0。
若發現還未切換成功,則重啟電腦即可。
㈧ Mac python3.7.1怎麼降低到3.6版本
mac 上面有一個 homebrew 工具。提供各式各樣的開發環境,並且可以在不同版本的環境之間切換。這樣的好處是不管你怎麼折騰,都不會污染到系統原生的環境。同樣的,系統如果升級以後也不會影響到你的開發環境。
1. 安裝 Homebrew
/usr/bin/ruby-e"$(curl-fsSLhttps://raw.githubusercontent.com/Homebrew/install/master/install)"
2. 安裝 python
brewinstallpython
brew 默認安裝的是 python 最新版本。可以用如下命令查看:
brewinfopython
3. 安裝 python 3.6
首先解除 python 綁定的 3.7 版本
brewunlinkpython
接下來安裝指定版本的 python
brewinstall--ignore-dependencieshttps://raw.githubusercontent.com/Homebrew/homebrew-core//Formula/python.rb
再次 用 brew info python 查看 python 版本,可以看見這個時候 python 關聯的是 3.6.5
4. 使用 brew switch 在不同版本的 python 間切換
假設你 homebrew 上面安裝的 python 版本是 3.7.2 和 3.6.5_1,則可以在這兩個版本間切換
brewswitchpython3.7.2
brewswitchpython3.6.5_1
㈨ Python PyAutoGUI錯誤提示求解
先寫一下自己的環境:操作系統windows7 64位,python版本python-3.7.0-amd64,安裝方式pip。OK,下面就開始逐條列舉所遇問題及解決方法。
1.運行pip install pyautogui後出現如下錯誤(黃字):
Collecting pyautogui
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None))
after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFI
CATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certif
icate (_ssl.c:1045)'))': /simple/pyautogui/
Could not fetch URL https://pypi.org/simple/pyautogui/: There was a problem co
nfirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Ma
x retries exceeded with url: /simple/pyautogui/ (Caused by SSLError(SSLCertVerif
icationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: una
ble to get local issuer certificate (_ssl.c:1045)'))) - skipping
Could not find a version that satisfies the requirement pyautogui (from versio
ns: )
No matching distribution found for pyautogui
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming
the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retrie
s exceeded with url: /simple/pip/ (Caused by SSLError(SSLCertVerificationError(1
, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get loc
al issuer certificate (_ssl.c:1045)'))) - skipping
這個問題比較坑,看log應該是https鑒權,於是上網找了各種方法,都不行,重裝python,重啟電腦,修改電腦時間都不行,最後發現是自己在調式其他東西打開了fiddler,關閉fiddler就好了,這個是被自己坑了。
2.繼續運行pip install pyautogui後提示You are using pip version 10.0.1, however version 19.0.1 is available.
這個是pip版本低了,根據提示運行python -m pip install --upgrade pip即可。
3.繼續運行pip install pyautogui出現錯誤:
Using cached https://files.pythonhosted.org/packages/01/ed/56d4a369c6e18f6b239
/PyGetWindow-0.0.4.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <mole>
File "C:\Users\80237102\AppData\Local\Temp\pip-install-m1k3v484\pygetwindo
w\setup.py", line 11, in <mole>
long_description = fh.read()
UnicodeDecodeError: 'gbk' codec can't decode byte 0xa2 in position 905: ille
gal multibyte sequence
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\80237102
\AppData\Local\Temp\pip-install-m1k3v484\pygetwindow\
這個錯誤是安裝pyautogui過程中遇到的一個核心錯誤,是安裝PyGetWindow過程中出現的,網上搜了一通,最後試了各種方法,就是降低PyGetWindow版本,默認安裝的PyAutoGUI-0.9.41,依賴的是PyGetWindow-0.0.4,就是這個PyGetWindow-0.0.4導致了上述問題,於是網上大神說降低PyGetWindow版本,運行pip install PyGetWindow==0.0.1後安裝PyGetWindow成功,然後再運行pip install pyautogui,這次成功了
㈩ 如何把spyder的版本從支持python3.6降為支持python3.5
根據spyder官網的提示,在windows下比較簡單的安裝方式是:安裝winpython。 winpython在sourceforge上的下載很容易找到。