在 google colab 中从 .pyx 文件导入
Posted
技术标签:
【中文标题】在 google colab 中从 .pyx 文件导入【英文标题】:Importing from .pyx file in google colab 【发布时间】:2021-10-06 10:12:11 【问题描述】:我正在尝试从 google colab 中的 .pyx 文件导入,但出现错误:ModuleNotFoundError: No module named 'filename'
我当前的代码是:
from google.colab import drive
drive.mount('/content/drive')
import sys
sys.path.append('/content/drive/My Drive/desiredPath')
from desiredModule import desiredClass
任何帮助将不胜感激!
【问题讨论】:
cython.readthedocs.io/en/latest/src/quickstart/build.html 【参考方案1】:您不能直接导入 pyx 文件,它们必须使用 Cython 编译。
请参阅cython docs,了解如何构建基于 cython 的项目。
【讨论】:
以上是关于在 google colab 中从 .pyx 文件导入的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Google Colab 中编辑和保存文本文件 (.py)?