我正在尝试使用anaconda为我的ipython笔记本安装python 3内核。这是为了让我在需要时使用Python 2或3。所以我在这个stackoverflow页面上找到了以下命令Using both Python 2.x and Python 3.x in IPython Notebook
conda create -n py35 python=3.5
source activate py35
conda install notebook ipykernel
ipython kernel install
问题是在安装python 3.5之后source activate py35
命令出现source is not recognized as an internal or external command, operable program or batch file
错误,当我使用activate py35
时,我得到the input line is too long
请问有没有办法解决这个问题错误?
答案 0 :(得分:0)
我在此post
中找到了解决方案我基本上在我的anaconda目录中创建了一个新的系统变量,并在现有的变量前添加了它的路径变量。然后"activate py35"
命令工作得很好。