Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/python-3.x/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jupyter notebook无法获取安装在Google VM上的最新python版本_Python_Python 3.x_Google Cloud Platform_Jupyter Notebook_Jupyter Lab - Fatal编程技术网

Jupyter notebook无法获取安装在Google VM上的最新python版本

Jupyter notebook无法获取安装在Google VM上的最新python版本,python,python-3.x,google-cloud-platform,jupyter-notebook,jupyter-lab,Python,Python 3.x,Google Cloud Platform,Jupyter Notebook,Jupyter Lab,我无法在谷歌云上将Python笔记本的版本从3.5升级到3.6。我已经安装了Python 3.6 在终端上,它向我显示python3版本已更新为3.6 jupyter@intel-20190810-94122:~$ python3 --version Python 3.6.3 但在Jupyter笔记本上,版本仍然是3.5 from platform import python_version print(python_version()) 3.5.3 你能重新安装Ipython吗?如果我没记

我无法在谷歌云上将Python笔记本的版本从3.5升级到3.6。我已经安装了Python 3.6

在终端上,它向我显示python3版本已更新为3.6

jupyter@intel-20190810-94122:~$ python3 --version
Python 3.6.3
但在Jupyter笔记本上,版本仍然是3.5

from platform import python_version
print(python_version())
3.5.3

你能重新安装Ipython吗?如果我没记错的话,IPython内核是Jupyter的Python执行后端。因此,如果您在使用python 3.5时安装了Ipython,那么无论您做什么,您的笔记本都将使用旧版本。现在你已经有了python 3.6,重新安装Ipython应该可以解决这个问题:)你是从Anaconda或类似的平台上启动Jupyter笔记本吗?它是谷歌平台上的Jupyter笔记本。你是如何解决这个问题的?我现在也有同样的问题,你能重新安装Ipython吗?如果我没记错的话,IPython内核是Jupyter的Python执行后端。因此,如果您在使用python 3.5时安装了Ipython,那么无论您做什么,您的笔记本都将使用旧版本。现在你已经有了python 3.6,重新安装Ipython应该可以解决这个问题:)你是从Anaconda或类似的平台上启动Jupyter笔记本吗?它是谷歌平台上的Jupyter笔记本。你是如何解决这个问题的?我现在也有同样的问题