ubuntu安装spyder和jupyter notebook

版权声明:本文为博主原创文章,未经博主允许不得转载。博客地址:http://blog.csdn.net/qq_22186119 https://blog.csdn.net/qq_22186119/article/details/79201200

ubuntu安装spyder和jupyter notebook

安装spyder

安装spyder

sudo apt install spyder
sudo apt install spyder3

安装jupyter notebook

安装pip, pip3

sudo apt install python-pip
sudo apt install python3-pip

升级pip, pip3

sudo pip install --upgrade pip
sudo pip3 install --upgrade pip

通过pip安装jupyter notebook

sudo -H pip install jupyter

安装ipykernel

sudo -H python2 -m pip install ipykernel
sudo -H python3 -m pip install ipykernel

猜你喜欢

转载自blog.csdn.net/qq_22186119/article/details/79201200