pip install conda之後出現問題
阿新 • • 發佈:2019-02-17
本篇文章主要用於解決,在Linux環境下,在終端輸入命令pip install conda之後出現異常報錯。
報錯的結果貼上如下:
ERROR: The install method you used for conda--probably either `pip install conda`or `easy_install conda`--is not compatible with using conda as an application.If your intention is to install conda as a standalone application,
currently
supported install methods include the Anaconda installer and the miniconda installer. You can download the miniconda installer from https://conda.io/miniconda.html.
第一種解決方案很簡單,就是先把所有的命令列關掉,然後重新開啟。如果還是報錯的話,請看第二種解決方案。
第二種解決方案,就是從對應的網站上下載相應的,miniconda包,然後在終端執行bash XXX.sh 命令,其中XXX.sh是下載的miniconda的檔名稱。
比如,我這裡是 bash Miniconda2-latest-Linux-x86_64.sh 即可。
如果已經安裝了conda包的話,那麼就執行bash Miniconda2-latest-Linux-x86_64.sh -f 表示強制執行該命令。