我使用的是一个深度学习镜像,但我真的只熟悉使用conda安装包,该镜像似乎没有使用它。我如何在我的jupyter笔记本内核中安装一个包?
发布于 2018-07-26 16:01:59
您可以从Jupyter内核安装python包,如下所示:
# Install a pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install numpy您可以查看this document以获取更多详细信息。
https://stackoverflow.com/questions/51531972
复制相似问题