Repository for the output of initial discussions regarding an MVP
google.com
- Johns Hopkins
https://systems.jhu.edu/research/public-health/ncov/
Instructions here assume Linux or macOS, please see the Python documentation for Windows instructions.
- Make sure you have python 3.6 or later.
- Create an environment:
$ python3 -m venv /path/to/ocd-env
This command creates the folder ocd-env
if it doesn't exist. You don't need to create it within this repository, it can live anywhere.
- Activate that environment:
$ . /path/to/ocd-env/bin/activate
- Install the dependencies:
$ pip install -r ./requirements.txt
- Work on your Python! When you're done, deactivate the environment:
$ deactivate