天天看點

ubuntu16安裝Anaconda3

目錄标題

1、引言

之前電腦裝過anaconda3,但是更新python之後再建立新環境老是報錯:

CondaDependencyError: Cannot run solver. No functioning SAT implementations available
           

試過這個網站的解決方法https://github.com/conda/conda/issues/8418,還是沒有成功,索性解除安裝重裝一遍。

解除安裝anaconda3:

rm -rf anaconda3
           

2、Anaconda安裝

到清華源鏡像網站根據需要下載下傳對應的anaconda,我下載下傳的是Anaconda3-5.3.1-Linux-x86_64.sh,然後在終端輸入下面指令開始安裝:

bash Anaconda3-5.3.1-Linux-x86_64.sh
           

一路回車,直到顯示許可資訊回複yes,之後提示要将Anaconda安裝在目錄/home/{使用者名}/anaconda3下,按下enter表示使用預設目錄。

Do you accept the license terms? [yes|no]

[no] >>> yes

Anaconda3 will now be installed into this location: /home/hy/anaconda3

  • Press ENTER to confirm the location
  • Press CTRL-C to abort the installation
  • Or specify a different location below

等待安裝時會詢問是否添加anaconda的使用者環境變量,這裡一定要選擇yes。最後會詢問是否安裝vscode,可以選擇no。

ubuntu16安裝Anaconda3

3、檢查是否安裝成功

打開一個新終端,輸入python,出現介紹python的版本資訊,而且後面還帶了anaconda辨別,說明安裝成功。

[email protected]:~$ python

Python 3.7.0 (default, Jun 28 2018, 13:15:42)

[GCC 7.2.0] :: Anaconda, Inc. on linux

Type “help”, “copyright”, “credits” or “license” for more information.

輸入which python,可看到python路徑為:/home/hy/anaconda3/bin/python

最後,為了避免再次發生更新錯誤,先把所有工具包進行更新:

conda upgrade --all
           

繼續閱讀