问题描述:
在项目下的文件执行脚本,可以手动执行
在其他文件目录下,手动执行脚本报错误,提示不存在该模块。
解决方法:
文件头加上:
import sys
import os
sys.path += [
os.path.dirname(os.getcwd()),
os.getcwd()
]
curPath = os.path.abspath(os.path.dirname(__file__))
rootPath = os.path.split(curPath)[0]
sys.path.append(rootPath)
时间: 2024-10-07 23:44:49