您当前的位置:首页 > 计算机 > 系统应用 > Linux

ubuntu18.04.3(server)安装python 3.7.4+anaconda+jupyter(远程访问))

时间:08-09来源:作者:点击数:

安装

  • 镜像源(清华)mirrors.tuna.tsinghua.edu.cn/ubuntu
    • apt-get update
    • apt-get upgrade -y
  • 清华源下载anaconda3 https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/
  • 我们这里下载https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.3.1-Linux-x86_64.sh
    • wget -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.3.1-Linux-x86_64.sh
    • bash Anaconda3-5.2.0-Linux-x86_64.sh
  • Enter 、yes
  • 环境变量 ,yes
  • 提示信息“Do you wish to proceed with the installation of Microsoft VSCode? [yes|no]”,输入no
    - 重启终端,即可使用Anaconda3
    - 重启终端,即可使用Anaconda3
    - 重启终端,即可使用Anaconda3
  • 终端输入 python,仍然会显自带版本,执行
sudo gedit ~/.bashrc
export PATH="/home/xupp/anaconda3/bin:$PATH" 
  • 使用清华源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
  • 升级更新
    • conda update -n base -c defaults conda
    • conda upgrade --all

Jupyter Notebook

  • 创建Jupyter_notebook环境,方便管理各种库
    • conda create -n jupyter python=3
  • 激活环境
    • conda activate jupyter
  • 删除环境
    • conda deactivate
  • 安装jupyter notebook(激活状态)
    • conda install jupyter notebook
  • test
    • jupyter notebook --ip=127.0.0.1 --allow-root
  • 配置远程访问
    • 设置访问密码
    • 设置全局访问
    • 禁用服务端自启浏览器
    • ipython
      • 使用passwd()函数生成密匙,把密匙复制下来
In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password: 
Verify password: 
Out[2]: 'sha1:8361f5f08937:081cdf40730cb5548e2c213ddd36813a53131xxf'
  • 配置
    • jupyter notebook --generate-config
    • vi /root/.jupyter/jupyter_notebook_config.py(注意路径需要修改)
    • c.NotebookApp.ip = '*'( 使用 / 快速定位 ,并去掉#,使其生效)
    • c.NotebookApp.password = 'sha1:8361f5f08937:081cdf40730cb5548e2c213ddd36813a5313192f'( 密钥需要修改为自己的 )
    • c.NotebookApp.open_browser = False(关闭浏览器自启)
  • 测试下吧
    • jupyter notebook --allow-root
    • http://xxx:8888
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门