Cannot open new Jupyter Notebook [Permission Denied]

前端 未结 19 2881
囚心锁ツ
囚心锁ツ 2020-12-08 10:18

I have installed Jupyter Notebook on ubuntu 16.04 using pip3. I can execute jupyter notebook command. It opens and shows a list of current path directories.

19条回答
  •  清歌不尽
    2020-12-08 10:45

    You don't have to install or uninstall anything. if you are using python 2 use pip to install and upgrade. But if you want to use python3 then follow the steps below:

    sudo apt-get install python3-pip python3-dev
    

    then in terminal use this

    pip3 install -U jupyter
    

    final step is to launch jupyter notebook so,in terminal just type

    jupyter notebook
    

    all the issues or problems of premissions etc will be resolved.

提交回复
热议问题