我已經使用安裝程序安裝Anaconda 4.2.0
Python 2.7
。但由於一些新的代碼更改,我將不得不使用Python 3.6
。因此,我使用安裝程序Anaconda 4.3.1
安裝了它。現在當我打開Jupyter Notebook
時,我可以看到2個Conda環境 - root和py36。製作「py36」是根環境
Root
環境已安裝keras
但py36
沒有。當我嘗試在py36
安裝keras,它給了我下面的錯誤:
InstallError: Install error: Error: one or more of the packages already installed depend on 'conda'
and should only be installed in the root environment: conda-env conda
These packages need to be removed before conda can proceed.
如何讓我的py36
是根的環境,所以我可以安裝就可以了keras
和運行我的代碼?
你可以在1個暢達同時安裝蟒蛇,作爲一個虛擬VENV:使用'暢達創建-n py35蟒蛇= 3.5 anaconda',並希望使用時'只是激活它激活py35'然後'jupyter notebook'打開筆記本或'pip install'激活py35後安裝到env –
我該怎麼做?你會碰巧知道一個教程嗎? – Patthebug
我用它每天,教程在這個環節https://conda.io/docs/py2or3.html#install-a-different-version-of-python –