jupyter notebook ModuleNotFoundError: No module named ‘tensorflow’
import tensorflow时出现了以上的错误,为了能够在虚拟环境的条件下使用jupyter notebook运行程序,需要切换一下jupyter notebook的kernel。
conda activate tensorflow
pip install ipykernel
python -m ipykernel install --name tensorflow --display-name "tensorflow"