Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/sorting/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/wpf/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在Debian 8上安装Jupyter_Debian_Jupyter - Fatal编程技术网

在Debian 8上安装Jupyter

在Debian 8上安装Jupyter,debian,jupyter,Debian,Jupyter,有人在Debian 8上成功安装了Jupyter吗?我遇到了几堵墙,需要一些关于如何继续的信息 我已经安装了pip和pip3,并随它们一起安装和升级了jsonschema,然而,Jupyter似乎正在查看我的Python 2.7目录。pip安装似乎缺少软件包或其他内容。安装所需的软件包: apt-get install build-essential python3-all python3-pip libncurses5-dev libncursesw5-dev libzmq3-dev 安装j

有人在Debian 8上成功安装了Jupyter吗?我遇到了几堵墙,需要一些关于如何继续的信息


我已经安装了pip和pip3,并随它们一起安装和升级了jsonschema,然而,Jupyter似乎正在查看我的Python 2.7目录。pip安装似乎缺少软件包或其他内容。

安装所需的软件包:

apt-get install build-essential python3-all python3-pip libncurses5-dev libncursesw5-dev libzmq3-dev
安装jupyter:

pip3 install --upgrade pip
pip3 install jupyter

键入
pip3 install jupyter--user
时,jupyter位于路径中的
~/.local/bin
。(pip打印一条关于它的警告) 因此,如果希望
bash
查找jupyter,则必须编辑
.bashrc
文件并将新条目添加到路径:

PATH=$PATH:~/.local/bin

echo "PATH=$PATH:~/.local/bin" >> .bashrc

你试过下载并安装Anaconda吗?是的,两次。现在已经解决了,不确定这是一个Anacoda还是Debian问题。我的解决方案是:apt get purge-y python pip wget python./get-pip.py apt get install python pip从这个博客: