Files
openfreemap/scripts/prepare-virtualenv.sh
2023-12-28 18:59:43 +01:00

17 lines
257 B
Bash
Executable File

#!/usr/bin/env bash
find . -name "*.egg-info" -exec rm -rf {} +
find . -name __pycache__ -exec rm -rf {} +
# deactivate
rm -rf venv
python3 -m venv venv
venv/bin/pip -V
venv/bin/pip install -U pip wheel setuptools
venv/bin/pip install click requests