Ubuntu 18.04 jupyternotebook中py2与py3共存的方法

文章目录

  • 直接在在Jupyter中安装Python第三方包方法

py2与py3在jupyter notebook中共存的方法
已经安装python2和python3,jupyter notebook.
如何查看:

Ubuntu 18.04 jupyternotebook中py2与py3共存的方法_第1张图片

python2 在执行python2 -m pip install ipykernel 时显示找不到pip
使用命令:

 apt-get install python-pip

直接在在Jupyter中安装Python第三方包方法

在jupyter notebook中直接输入:!pip install [package]

在jupyter notebook中输入命令行指令时,前面都要加上 !
Ubuntu 18.04 jupyternotebook中py2与py3共存的方法_第2张图片

你可能感兴趣的:(Python,jupyter,notebook)