我正在使用使用Anaconda进行数据科学的python笔记本,并且正在尝试安装张量流。 我遵循了本教程: https://tensorflow-object-detection-api-tutorial.readthedocs.io/en/latest/install.html
,一切都很好。我可以输入import tensorflow as tf
,但没有错误。但是当我返回到python笔记本时,我将导入tensorflow写为tf时,我仍然遇到此错误:
没有名为'tensorflow'的模块
我该如何解决?
答案 0 :(得分:0)
您应该已经在Conda环境中安装了Jupiter笔记本电脑。
conda activate <your-environment-name>
conda install -c anaconda jupyter
这为我解决了同样的问题。
答案 1 :(得分:0)
请按照以下步骤从jupyter笔记本轻松使用anaconda环境。
conda create -n myenv
source activate myenv
python -m ipykernel install --user --name myenv --display-name "Python(myenv)"
您现在可以在jupyter Notebook中切换内核,并导入您在conda环境中安装的所有软件包。