我按照 TensorFlow 网站上的说明安装 tensorflow_hub 并将其安装在 conda 环境中。
$ pip install "tensorflow>=2.0.0"
$ pip install --upgrade tensorflow-hub
我在 anaconda 提示符中运行了上述内容
但我仍然在ModuleNotFoundError
为“tensorflow_hub”而努力。
任何帮助在这里表示赞赏。提前致谢
我按照 TensorFlow 网站上的说明安装 tensorflow_hub 并将其安装在 conda 环境中。
$ pip install "tensorflow>=2.0.0"
$ pip install --upgrade tensorflow-hub
我在 anaconda 提示符中运行了上述内容
但我仍然在ModuleNotFoundError
为“tensorflow_hub”而努力。
任何帮助在这里表示赞赏。提前致谢
首先 检查您是否在该环境中安装了 tensorflow_hub
conda list
如果你在那里找不到它,也许你已经将它安装到另一个无关紧要的环境中,只需在这里重新安装它。
pip install tensorflow_hub
你可能已经这样做了,所以很可能你在你的 jupyter notebook 中使用了另一个内核,所以要么去那个内核的环境并在那里安装你的包。或者首选方式,将当前环境安装yourenvironment
为新内核并在 jupyter notebook 中使用该内核
python -m ipykernel install --user --name=yourenvironment
现在启动你的 jupyter notebook 并享受你的包