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
I followed the instructions (in README.md) to run the app, but being on macOS and using Xcode 12, it didn't work. However, what works is the following:
python3 -m venv ./venv
. ./venv/bin/activate
pip install --upgrade pip
pip install wheel <-- Added to prevent several warnings when installing the requirements
export ARCHFLAGS="-arch x86_64" <-- Needed on macOS when using Xcode 12
pip install -r requirements.txt
pip install -r requirements-dev.txt
gunicorn main:app
The text was updated successfully, but these errors were encountered:
I followed the instructions (in
README.md
) to run the app, but being on macOS and using Xcode 12, it didn't work. However, what works is the following:The text was updated successfully, but these errors were encountered: