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 を試してみましたが、インストールを行うためのソースを見つけることができませんでした。