gpt4 book ai didi

python - 如何安装使 Jupyter 能够加载的包?

转载 作者:行者123 更新时间:2023-12-01 02:08:08 24 4
gpt4 key购买 nike

我已经安装了 imageio:

$ pip install imageio
Requirement already satisfied: imageio in /Library/Python/2.7/site-packages
Requirement already satisfied: numpy in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from imageio)
Requirement already satisfied: pillow in /Library/Python/2.7/site-packages (from imageio)

现在我使用 Jupyter 加载 .ipynb 文件:

$ jupyter notebook 1_notmnist.ipynb

出现错误:

ImportError: No module named imageio

我认为这与 Can't load Python modules installed via pip from site-packages directory 有关。 ,并完全按照答案建议重新安装imageio:

$ python -m pip install imageio

仍然没有帮助。

如何安装 imageio 来启用 Jupyter 加载?

更新:

终端:$ which python

/usr/bin/python

Jupyter:

$ import sys
print sys.executable

/usr/local/opt/python/bin/python2.7

最佳答案

您可以通过jupter笔记本安装模块,只需粘贴:

!pip install imageio

在你的笔记本上,然后就可以了。

可能是您在 python2 上安装了它,但在 jupyter 上不可用,或者您正在使用虚拟环境。

<小时/>

更新:如果您要添加

%load_ext autoreload
%autoreload 2

到您的笔记本,然后您的笔记本将看到已安装的软件包(您应该导入它而不会出现错误)。

关于python - 如何安装使 Jupyter 能够加载的包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48867682/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com