Skip to content
This repository has been archived by the owner on Sep 2, 2020. It is now read-only.

globaldothealth/mvp-notes-and-ideas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mvp-notes-and-ideas

Repository for the output of initial discussions regarding an MVP

Useful resources

  • google.com
  • Johns Hopkins https://systems.jhu.edu/research/public-health/ncov/

Configuring Python

Instructions here assume Linux or macOS, please see the Python documentation for Windows instructions.

  1. Make sure you have python 3.6 or later.
  2. 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.

  1. Activate that environment:
    $ . /path/to/ocd-env/bin/activate
  1. Install the dependencies:
    $ pip install -r ./requirements.txt
  1. Work on your Python! When you're done, deactivate the environment:
    $ deactivate