如何从Jupyter笔记本内部使用virtualenv

时间:2019-09-25 08:06:20

标签: python jupyter-notebook

我正在使用jupyter笔记本,并且内部我要使用virtualenv运行此jupyter笔记本。

我能够通过使用这些命令来创建和获取(?)virtualenv

!virtualenv venv
!. venv/bin/activate

但看来在标准位置仍在使用python

!which python
/opt/conda/bin/python

有什么方法可以从正在运行的jupyter笔记本中内部创建和切换虚拟环境吗?

1 个答案:

答案 0 :(得分:0)

激活venv

之后
pip install ipykernel
ipython kernel install --user --name=venv
jupyter notebook

在jupyter Notebook中,您可以在venvpython x之间进行选择。