本文介绍了导入测试库失败.没有名为“a"的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个文件夹 /example
,其中包含 /Libs
,它进一步包含不同的文件夹 /a
, /b
> 每个包含 python
库.我正在尝试从 /example
运行 robot
框架代码.
I have a folder /example
which contains /Libs
which further contains different folders /a
, /b
each containing python
libraries. I am trying to run a robot
framework code from /example
.
它显示的错误:
导入测试库a"失败:导入错误:没有名为a"的模块文件/root/Libs/a/init.py",第 7 行,在从导入 a_classname
我该如何解决这个问题?
How can I solve this?
推荐答案
import os
import sys
filepath = "path/file/"
sys.path.append(os.path.abspath(filepath))
from a import a_classname
这篇关于导入测试库失败.没有名为“a"的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!