You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two things I ran into problems with. Nothing big, but just took me a while to figure it out.
In the requirements.txt file, you need to add Werkzeug==2.2.2 otherwise Werkzeug 3.x or greater could install and break the make due to the import statements being incompatible with Werkzeug 3.x.
Also, in the script/setup I had to place quotes around the path to the requirements file using pip install -r "$REPO_DIR/requirements.txt". Without the quotes my path was causing an error due to - being in the path.
I have not had a chance to explore the code, but I appreciate you sharing it. :)
The text was updated successfully, but these errors were encountered:
Two things I ran into problems with. Nothing big, but just took me a while to figure it out.
In the requirements.txt file, you need to add
Werkzeug==2.2.2
otherwise Werkzeug 3.x or greater could install and break themake
due to the import statements being incompatible with Werkzeug 3.x.Also, in the
script/setup
I had to place quotes around the path to the requirements file usingpip install -r "$REPO_DIR/requirements.txt"
. Without the quotes my path was causing an error due to-
being in the path.I have not had a chance to explore the code, but I appreciate you sharing it. :)
The text was updated successfully, but these errors were encountered: