我正在尝试将python文件导入我的应用程序,该文件是用python编写的。
我有以下代码:
import os
from os.path import basename
class specificClass:
def dothing(self,path):
runcommand = __import__("/root/"+ os.path.splitext(os.path.basename(path))[0]+ "/" + os.path.splitext(os.path.basename(path))[0] +"/sa/update.py")
runcommand.main()
当我运行它时,它会给我以下错误:
ImportError: Import by filename is not supported.
答案 0 :(得分:10)
您可以说
,而不是像__import__
那样进行导入
import sys
sys.path.append(path) # this is where your python file exists
import update