用Jupyter笔记本使用python3.6而不是3.4
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Jupyter笔记本使用python3.6而不是3.4相关的知识,希望对你有一定的参考价值。
我的Jupyter笔记本安装了python3.4,它默认使用它,最近我必须切换到python3.6。
如何在不从系统中删除3.4的情况下将Jupyter笔记本设置为使用python3.6而不是3.4?
我正在使用Ubuntu 14.04 LTS
答案
您可以这样做的一种方法是设置虚拟环境。
一旦你拥有它,我将使用virtualenv作为例子。
你会这样做:
$ cd <directory where notebooks are>
$ virtualenv -p <path to python3.6> venv
$ source venv/bin/activate
$ pip install jupyter
运行jupyter笔记本,看看你在python3.6上
以上是关于用Jupyter笔记本使用python3.6而不是3.4的主要内容,如果未能解决你的问题,请参考以下文章
如何在 python 循环中更新 matpplotlib 库图,该图位于 Jupyter 笔记本中的同一位置?
jupyter notebook 同时存在python3.5 和python3.6