我在 Mac 上收到以下导入错误:
ImportError: No module named Conf_Reader
以下是我的 Python 代码的几行初始代码:
import dotenv
import os
import testrail
import Conf_Reader
#setup the testrail client and connect to the testrail instance
def get_testrail_client():
testrail_file = os.path.join(os.path.dirname(__file__),'testrail.env')
testrail_url = Conf_Reader.get_value(testrail_file,'TESTRAIL_URL')
client = testrail.APIClient(testrail_url)
..
..
..
到目前为止,尝试使用 pip 并找不到任何安装资源。