Local-Connectivity-Lab / ccn-coverage-vis

Visualizations of coverage and performance analysis for Community Cellular Networks.
2 stars 2 forks source link

Implement and document a virtual env for the webscraper project #39

Closed philion closed 3 weeks ago

philion commented 5 months ago

Add a requirements.txt to capture dependencies. Update README with setup instructions for the venv.

To save:

python -m venv .venv
. .venv/bin/activate
pip install -U pip           # update pip
pip freeze > requirements.txt

To create venv and install:

python -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt
philion commented 3 weeks ago

Complete.