安装Flask应用

2024-06-08 23:31:05 发布

您现在位置:Python中文网/ 问答频道 /正文

我跟随this tutorial来设置一个烧瓶应用程序。在

我准备好了:

pip install --editable .

当我运行这个程序时,我得到一个错误:

Could not find a version that satisfies the requirement flask (from flaskr==0.0.0) (from versions: ) No matching distribution found for flask (from flaskr==0.0.0)

如何安装应用程序?在


Tags: installpipfrom程序应用程序flask烧瓶错误
1条回答
网友
1楼 · 发布于 2024-06-08 23:31:05
pip install  editable

这需要在根目录下运行。确保在根目录下运行它。在您的例子中,flaskr/是项目的主文件夹。在

相关问题 更多 >