问题(已解决):ModuleNotFoundError:在Google colab中修改模块后,没有名为“ xzy”的模块

时间:2020-05-28 07:35:59

标签: python module google-colaboratory modulenotfounderror

将模块从.py文件导入google colab时,我遇到的问题是,当我在google colab编辑器中修改了这些模块中的功能时,保存新版本的.py文件后无法将其加载到google colab中

解决方案:在每次更新模块或软件包后,我需要重新启动运行时。重新启动后,可以访问这些模块以将其导入google colab脚本。

另一个有用的建议是将模块所在的文件夹添加到sys.path

sys.path.insert(0, '/content/folder')

1 个答案:

答案 0 :(得分:0)

您可以使用importlib

重新加载模块
import xyz # your module
import importlib

# Reload module before using it
importlib.reload(xyz)

阅读docs以获得更多信息