We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug I get a "ModuleNotFoundError: No module named 'flask._compat'" when I try to run a new pyms app.
To Reproduce Steps to reproduce the behavior: (Simply follow the documentation)
Scaffold a new app with 'pyms startproject' and choose the default options.
Navigate into the new project and install dependencies using virtualenv
Run server
Expected behavior The app should not throw any error and be accessible on http://127.0.0.1:5000/[APPLICATION_ROOT]/
Screenshots
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
Update the requirements.txt to use any Flask version < 2...
requirements.txt
E.g add Flask==1.1.4 to the top of the requirements.txt file
Flask==1.1.4
Then run pip install -r requirements.txt to install updated dependencies.
pip install -r requirements.txt
Sorry, something went wrong.
Worked fine, thanks Victor!
Created a Issue to fix that, thanks @sorXCode @Ileriayo !
#235
No branches or pull requests
Describe the bug
I get a "ModuleNotFoundError: No module named 'flask._compat'" when I try to run a new pyms app.
To Reproduce
Steps to reproduce the behavior:
(Simply follow the documentation)
Scaffold a new app with 'pyms startproject' and choose the default options.
Navigate into the new project and install dependencies using virtualenv
Run server
Expected behavior
The app should not throw any error and be accessible on http://127.0.0.1:5000/[APPLICATION_ROOT]/
Screenshots
![Screenshot 2021-07-03 at 15 16 41](https://user-images.githubusercontent.com/13166712/124357199-2ac4e180-dc12-11eb-911b-9c0618675653.png)
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: