Ubuntu安装jupyter后,使用时显示找不到命令(command not found)

首先找到jupyter可执行文件位置:
Ubuntu安装jupyter后,使用时显示找不到命令(command not found)_第1张图片
可执行文件是在/local/bin/下面的,然后修改/etc/profile文件,将jupyter可执行文件路径写进去:

sudo vim /etc/profile
添加如下代码
export PATH=$PATH:~/.local/bin
退出编辑,更新配置
source  /etc/profile       

你可能感兴趣的:(Python,Linux,机器学习,linux,python,机器学习)