我正在尝试从位于不同目录中的app.py
运行results.py
。我有以下映射:
App/
---model/
--------model.csv
---results/
----------results.py
---app.py
results.py
def get_file():
df = pd.read_csv('../model/model.csv')
...
我试图更改工作目录,但我仍然有FileNotFoundError
app.py
curr_dir = os.path.dirname(os.path.abspath(__file__))
path = os.path.join(curr_dir, 'results')
subprocess.Popen("ls", cwd=path)
get_file()
快速修复可以是
def get_file():
try:
df = pd.read_csv('../model/model.csv')
except FileNotFoundError:
df = pd.read_csv('./model/model.csv')
我正在尝试从位于其他目录中的 app.py 运行 results.py
您可以在路径中创建"结果/"文件__init__.py:
#file __init__.py
from .results import get_file
然后在 app.py 中你可以称之为:
import results
results.get_file()