python-version==3.7
- python -m venv venv
- venv/scripts/python -m pip install -r requirements.txt
- MUST uninstall uvicorn and pydantic and reinstall it WITHOUT BINARY:
- venv/scripts/python -m pip uninstall uvicorn pydantic -y
- venv/scripts/python -m pip install uvicorn --no-binary uvicorn
- venv/scripts/python -m pip install pydantic --no-binary pydantic
- venv/scripts/pyinstaller extracter.py --onefile --clean --distpath .
- venv/scripts/pyinstaller server.py --onefile --clean --distpath .