我正在尝试将python库下载到google colaboratory环境并使其正常运行。库的结构为:
在file1中,我使用“ from file2 import *”导入file2。
然后我尝试将笔记本中的库与“ from lib.module import file1”一起使用,并且出现此错误: ModuleNotFoundError:没有名为“ file2”的模块。
导入file2正常。问题出在file1上,它导入了file2。
我尝试在本地使用该软件包,并且一切正常。
在两种情况下,lib都在工作目录中。
您能解释一下在Google colaboratory和本地使用该软件包之间的区别吗?