mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 05:52:17 +00:00
16 lines
221 B
Bash
Executable File
16 lines
221 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
|
|
|
|
|
|
|