linux 非root用户 安装 anaconda 与 jupyter
安装 anaconda 与 jupyter
anaconda
下载
wget https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh
安装
sh Anaconda3-2020.11-Linux-x86_64.sh
配置环境变量
vim .bashrc
在末尾添加
export PATH=/home/tom/anaconda3/bin:$PATH
环境变量立马生效
source .bashrc
jupyter
安装
pip install jupyterlab
配置
生成配置文件
jupyter lab --generate-config
设置密码,获取密文 python3
from notebook.auth import passwd
passwd()
Enter passw
共有 0 条评论