我正在尝试从Colab中的Coursera类(在Jupyter中)运行一个笔记本的副本并收到错误:
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-6-1ee14f68a167> in <module>()
8 import tensorflow as tf
9 from tensorflow.python.framework import ops
---> 10 from cnn_utils import *
11
12 get_ipython().magic('matplotlib inline')
ModuleNotFoundError: No module named 'cnn_utils'
我试着做!pip install
,但它再次对我大喊:
Could not find a version that satisfies the requirement cnn_utils (from versions: )
No matching distribution found for cnn_utils
任何人都知道如何解决它?
答案 0 :(得分:1)
cnn_utils
这里只是课程的个人图书馆,而不是公共模块。您无法使用pip install
安装它。
您需要找到cnn_utils.py
的来源,然后将其下载到您的计算机,然后将其上传到Colab。
答案 1 :(得分:0)
这是Coursera课程的cnn_utils.py