從https://repo.continuum.io/archive/index.html上下載對應版本的Anaconda。html
或者到官網:https://www.anaconda.com/download/#linux選擇Linux版本下載python
選擇好版本後進行下載:linux
wget https://repo.anaconda.com/archive/Anaconda3-5.2.0-Linux-x86_64.sh
(下載速度可能會很慢,能夠自行使用國內源)bash
Linux下執行:spa
bash Anaconda3-5.0.1-Linux-x86_64.sh
安裝過程當中會須要不斷回車來閱讀並贊成license。code
安裝路徑默認爲用戶目錄(能夠本身指定),最後須要確認將路徑加入用戶的.bashrc中。htm
最後,當即使路徑生效,須要在用戶目錄下執行:(必定不要忘了執行)blog
source .bashrc
此時,打開python就是最新的3.6版本了。get
爲了保持更新,能夠在終端中執行:io
conda upgrade --all
若是報下面的錯誤,極可能是由於設置了PYTHONPATH環境變量。
這將致使Anaconda沒法調用正常的本身的庫(Anaconda運行不依賴PYTHONPATH環境變量)。
Traceback (most recent call last): File "/home/*****/anaconda3/bin/conda", line 4, in <module> import re File "/home/*****/anaconda3/lib/python3.6/re.py", line 142, in <module> class RegexFlag(enum.IntFlag): AttributeError: module 'enum' has no attribute 'IntFlag'
建議在打開python前執行:
unset PYTHONPATH
或者直接將上述命令一樣寫入.bashrc文件中並用source生效。
參考:https://www.cnblogs.com/mypath/articles/7877493.html