A little journey to create something with ducks 🦆 🦆
When trying to run the program from source code users of Arch Linux (possibly other Distros arr affected as well) might encounter problems when drawing text via python arcade.
Solution: Manually uninstall Pillow via pip:
sudo pip uninstall Pillow
Then recompile Pillow yourself:
pip install --compile --install-option=-O1 Pillow
- Install virtual environment
python3 -m venv .env
- Activate with
. .env/bin/activate
, deactivate withdeactivate
- With activated .env, install required modules
pip install -r requirements.txt
- Follow RealPython Tutorial from here
@cmacht @dertopher