- python3
- git
- pip (should have come installed with python)
- virtualenv (install with
pip install virtualenv
)
Mac/Linux Instructions
git clone
the repocd
into the directory you cloned to- Create a python virtual environment with
virtualenv venv -p python3
- Activate the virtual environment with
source venv/bin/activate
- Install requirements with
pip install -r blackjack/requirements.txt
- Run
cd blackjack
to move into the blackjack folder - Run tests with
tox
- Go wild!
Windows instructions
git clone
the repocd
into the directory you cloned to- Create a python virtual environment with
virtualenv venv
- Activate the virtual environment with
venv\Scripts\activate.bat
- Install requirements with
pip install -r blackjack/requirements.txt
- Run
cd blackjack
to move into the blackjack folder - Run tests with
tox
- Go wild!