ImportError:DLL加载失败:找不到指定的模块“ TestClass”

时间:2019-04-15 13:28:06

标签: python python-sphinx

我搜索了其他多个问题,但是他们的答案没有帮助,或者我无法正确实施它们。从他们看来,this question与我认为的问题差不多。

我的目录结构如下:

let activityVC = UIActivityViewController...

// Temporarily change the nav bar button's tint color.
let originalColor = UINavigationBar.appearance().tintColor
activityVC.completionWithItemsHandler = { type, completed, items, error in
    UINavigationBar.appearance().tintColor = originalColor
}
UINavigationBar.appearance().tintColor = UIColor.blue

present(activityVC, ...

我要记录以下课程DashboardV3 TestClass.py doc source index.rst conf.py

TestClass.py

我在import pandas as pd import numpy as np from numba import jit class MyClass: def preprocess_dataframe(path): df = pd.read_csv(path) return df 中包括以下路径设置:

conf.py

import os import sys sys.path.insert(0, os.path.abspath('.')) sys.path.insert(0, os.path.abspath('..')) sys.path.insert(0, os.path.abspath('./')) print(sys.path) 的定义如下:

Index.rst

但是,运行Welcome! ========================================= .. automodule:: testClass.MyClass :members: .. toctree:: :maxdepth: 2 :caption: Contents: 时出现以下错误:

make html

这是总打印日志的一部分:

ImportError: DLL load failed: The specified module could not be found

请明确一点:我试图从其他所有事先提出的​​问题中实施几种解决方案,而我之所以提出这种要求,是因为我很可能未能正确地回答。

如果出于兴趣,我正在VS Code中进行编码。

非常感谢您的帮助!

0 个答案:

没有答案