在文件开头加入以下代码,即可
import sys
import os
curPath = os.path.abspath(os.path.dirname(__file__))
rootPath = os.path.split(curPath)[0]
sys.path.append(rootPath)
切记,是文件开头加入,验证可行。
在文件开头加入以下代码,即可
import sys
import os
curPath = os.path.abspath(os.path.dirname(__file__))
rootPath = os.path.split(curPath)[0]
sys.path.append(rootPath)
切记,是文件开头加入,验证可行。