Home > Enterprise >  Error importing numpy in Google co lab using Android
Error importing numpy in Google co lab using Android

Time:01-31

I am trying to import numpy in Google co lab using Android but I am getting error shown in attached snap enter image description here

CodePudding user response:

As @Michael S. allready mentioned in the comments, Import needs to be lowercase:

import numpy as np

CodePudding user response:

You must write the "I" in lowercase. Like that import numpy as np

  • Related