我对于通过命令行与Mac OS进行交互还不是很陌生,但是我正努力做出更多的努力来理解与Mac OS的交互,特别是在安装用于编程语言的程序时。我正在尝试安装jupyterlab,所以我跑了
>>> pip install jupyterlab
,某些东西在运行,所以我假设它已安装在某处。
但是什么时候运行
>>> jupyter lab or >>>jupyterlab
我都得到了(找不到命令)
-bash: jupyterlab: command not found
现在我已经在网上看到有关安装的信息 “如果使用pip install --user安装,则必须将用户级bin目录添加到PATH环境变量中,才能启动jupyter实验室。”
现在这最初对我来说并没有太大意义,但是当我查看python的哪个版本并且我知道时,我一直在研究\ bin文件
>>> which python
给我python二进制文件的位置。我自然尝试过
>>> which jupyterlab
>>> which jupyter lab
但两者都不给我任何东西。
当我输入pip install jupyterlab时,我也收到此消息
Defaulting to user installation because normal site-packages is not
writeable
Requirement already satisfied: jupyterlab in
./Library/Python/2.7/lib/python/site-packages (0.33.12)
有人有什么想法吗?首先,我需要将用户级别的bin目录添加到我的路径环境变量中吗?如果是这样,我如何找到它以及如何做到这一点?我真的很感激任何建议,这些建议对于一个完整的初学者来说都是很重要的。我真的很想了解这一点,因此我将来可以尝试避免出现此类问题。我应该强调指出我没有安装conda,我想用pip解决此问题。谢谢!
答案 0 :(得分:0)
您可能应该尝试卸载jupyterlab,因为它是使用Python 2.7安装的
pip uninstall jupyterlab
然后使用以下命令检查是否不存在jupyter:
which jupyterlab
最后使用pip3 install而不是pip重新安装它。 让pip使用python3。
pip3 install jupyterlab
让我知道它是否有效;)