Installation guide
1. Get the project
Clone repository with Git:
$ git clone https://github.com/johntsinger/da-python-p13.git
or
Download the repository:
On the project page
Click on green Code button
Click on download ZIP
Extract the file.
And go to the project folder:
$ cd /path/to/da-python-p13
2. Install Python
Requires python 3.6 or higher
If you don’t have Python 3, please visit : https://www.python.org/downloads/ to download it !
3. Virtual Environment
Create a virtual environment in the project root:
$ python -m venv env
Activate a virtual environment :
windows:
$ env/Scripts/activatelinux/mac:
$ source env/bin/activate
4. Install dependencies
$ pip install -r requirements.txt