Module Not Found Error - plt.overfit

Hi,

How are you all? Hope this email find all of you well.

I am trying to run C1_W3_Lab09 lab in Google Colab environment. But it cannot find some of the modules needed for the lab. I was able to install few of them using “pip install” but failed when trying “pip install plt_overfit”.
How can I utilize the downloaded plt_over.py from the course so it can be installed in Google Colab?

Thank you in advance for your help.

1 Like

All of the utilities are available in the notebook “File” menu. Pip is not necessary.

Thank you, I did download all utilities and lab files to my google drive. But I still receive an error message when I try to run “from plt_overfit import overfit_example, output”.

Check this guide on how to run the assignment files on Colab.

1 Like

Thank you so much!! Your instructions are clear and I am able to load now. Thank you again!!!

I fixed that problem, just do it:
import numpy as np
%matplotlib widget
import matplotlib.pyplot as plt
from plt_overfit import overfit_example, output
from lab_utils_common import sigmoid
np.set_printoptions(precision=8)