我有些困惑,为什么在Jupyter
笔记本中更改内核不会更改我创建的Conda
环境。
步骤如下:
conda create -y --name tensorflow python=3.6
源激活tensorflow
python -m ipykernel install --user --name tensorflow --display-name "Python 3.6 (tensorflow)"
然后打开Jupyter笔记本,我键入"Jupyter notebook"
在Jupyter笔记本中,我同时拥有"Python 3.7"
和"Python 3.6 (tensorflow)"
我创建一个新的python文件并检查python的版本-说3.6. Good
Now I change the kernel in Jupyter notebook to
“ Python 3.7” , but still the python version is
3.6 , I was expecting it to have
3.7`
你能指导吗?