我试图在Anaconda Jupyter笔记本上安装2个python包。Python包的链接如下:1)https://iapws.readthedocs.io/en/latest/modules.html2)https://pythonhosted.org/thermopy/iapws.html#module-thermopy.iapws
但我在两个安装上都遇到了以下错误。谁能告诉我怎么了?
通过蟒蛇,你应该把这个写在你的木星笔记本上:
# Install a conda package in the current Jupyter kernel
import sys
!conda install --yes --prefix {sys.prefix} packagename
与Python的正常安装,你应该写在你的Jupyter笔记本上:
# Install a pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install packagename
通过将Packagename替换为包的名称,如Numpy。
干杯
您的Jupyter笔记本服务器无法访问Internet。您的操作系统可能有防火墙或限制第三方应用程序的互联网访问,尤其是因为这是一台工作笔记本电脑。
无论如何,使用pip
安装组件很容易。如果无法从笔记本内部访问internet,请尝试以管理员的身份打开命令提示符,只需键入pip install iapws
。