Files
openfreemap/prepare-virtualenv.sh
Zsolt Ero 28f6d4f73a start
2023-12-02 23:42:09 +01:00

15 lines
236 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
source venv/bin/activate
pip install -U pip wheel setuptools
pip install -e .