用pip安装jupyter后,终端仍然找不到jupyter笔记本。
Ubuntu只是说命令没有找到。与ipython类似。pip没有安装好还是怎么了?Ubuntu如何知道在哪里寻找安装了pip的可执行文件?
用pip安装jupyter后,终端仍然找不到jupyter笔记本。
Ubuntu只是说命令没有找到。与ipython类似。pip没有安装好还是怎么了?Ubuntu如何知道在哪里寻找安装了pip的可执行文件?
当前回答
在Ubuntu上安装Jupyter Notebook之后,我得到了以下错误:
异常:Jupyter命令' Jupyter -notebook'未找到。
我使用简单的命令,它为我工作
PIP install——upgrade——force-重装——no-cache-dir jupyter
来源:http://commandstech.com/how-to-install-jupyter-on-ubuntu16-04-with-pictures-commands-errors-solution/
从root用户退出后执行:
朱皮特笔记本
其他回答
在Mac OS上,您需要导出~/。在$PATH变量中使用local/bin。
# Edit the bash profile:
$ vim ~/.bash_profile
# Add this line inside ~/.bash_profile:
export PATH=$PATH:~/.local/bin
# Update the source:
$ source ~/.bash_profile
# Open Jupyter:
$ jupyter notebook
我都试过了,
pip install jupyter
and
pip3 install jupyter
但最后还是用
sudo -H pip install jupyter
以另一个用户-H执行命令
-H (HOME)选项要求安全策略将HOME环境变量设置为密码数据库指定的目标用户(默认为root)的主目录。根据策略的不同,这可能是默认行为。
我尝试了所有的方法,最后在运行树莓派4的树莓派操作系统上,这对我来说是有效的
sudo apt install python3-notebook jupyter jupyter-core
在Ubuntu上安装Jupyter Notebook之后,我得到了以下错误:
异常:Jupyter命令' Jupyter -notebook'未找到。
我使用简单的命令,它为我工作
PIP install——upgrade——force-重装——no-cache-dir jupyter
来源:http://commandstech.com/how-to-install-jupyter-on-ubuntu16-04-with-pictures-commands-errors-solution/
从root用户退出后执行:
朱皮特笔记本
任何人寻找运行的jupyter作为sudo,当jupyter安装virtualenv(没有sudo) -这为我工作:
首先验证这是一个PATH问题:
检查jupyter返回的路径是否被sudo用户覆盖:
sudo env | grep ^PATH
(相对于当前用户:env | grep ^PATH)
如果它没有覆盖-添加一个软链接从它覆盖的路径之一。为例:
sudo ln -s /home/user/venv/bin/jupyter /usr/local/bin
现在你应该能够运行:
sudo jupyter notebook