学习来源:
数据挖掘环境:虚拟机 Ubuntu 上安装 Python 和 Jupyter Notebook(IPython Notebook)完整步骤_ubuntu ipython-CSDN博客
一 、更新系统
sudo apt-get update #更新软件列表
sudo apt-get upgrade #更新软件(时间较长,且不是必须的)
二、安装python3 和pip 命令
sudo apt install python3
sudo apt install python3-pip
三、安装 IPython 交互式 shell
pip install ipython
接着终端输入:
sudo apt install jupyter-core
sudo apt install jupyter-notebook
启动
jupyter notebook
把终端的cookie密码写入即可登录。
过程图
-end-