Skip to content
jklynch edited this page Oct 21, 2015 · 5 revisions

Development Environment Setup

  1. It is recommended that a virtual environment be created for development. I like to create a virtual environment called 'venv34' in the mrfitty directory like this:

    python3 -m venv venv34

    or

    pyenv-3.4 venv34

    Activate the new virtual environment:

    source venv34/bin/activate

    Note: I had to apt-get install python3.4-venv in Linux Mint 17.2.

  2. Now setuptools must be installed in venv34.

    wget https://bootstrap.pypa.io/ez_setup.py -O - | python

  3. Install required packages.

    pip install -r requirements-dev.txt -r requirements.txt

Clone this wiki locally