gpt4 book ai didi

python - RuntimeError(f"目录 '{directory}' 不存在") RuntimeError : Directory 'app/static' does not exist

转载 作者:行者123 更新时间:2023-12-03 08:26:28 28 4
gpt4 key购买 nike

运行 server.py 文件时出现错误

File "C:\Users\nawin\AppData\Local\Programs\Python\Python38\lib\site-packages\starlette\staticfiles.py", line 57, in __init__
raise RuntimeError(f"Directory '{directory}' does not exist")
RuntimeError: Directory 'app/static' does not exist

server.py 文件

app = Starlette()
app.add_middleware(CORSMiddleware, allow_origins=['*'], allow_headers=['X-Requested-With', 'Content-Type'])
app.mount('/static', StaticFiles(directory='app/static'))

Python 版本 3.8操作系统 Windows 10

最佳答案

了解程序的执行路径非常重要(对于GNU/Linux环境):

如果您有这样的工作目录:~/working/myprogram

第一种情况

  1. 首先访问您的工作目录:cd ~/working/myprogram
  2. 执行:python3 mysuper.py

然后就可以毫无问题地执行了。

第二种情况

但是如果您在另一个目录中:

  1. 转到桌面文件夹:cd ~/Desktop
  2. 执行:python3 ~/working/myprogram/mysuper.py

在第二种情况下你会遇到问题。为了避免这种情况,有一个建议(很难看),但可以是:

import os
script_dir = os.path.dirname(__file__)
st_abs_file_path = os.path.join(script_dir, "static/")
app.mount("/static", StaticFiles(directory=st_abs_file_path), name="static")

关于python - RuntimeError(f"目录 '{directory}' 不存在") RuntimeError : Directory 'app/static' does not exist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66513425/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com