A duplication of the reddit site for the Harare Institute of Technology community. The purpose of this project is to teach new members the basics of Python and how to use the Django framework, while building something interesting and fun.
-
Install Python -v 3+ : https://www.python.org/downloads/
- to check if Python is installed open your cmd(Windows + R) and type "python"
-
Install git bash : https://gitforwindows.org/
- configure your git username and email using the following commands in the cmd:
- $ git config --global user.name "Emma Paris"
- $ git config --global user.email "eparis@atlassian.com"
-
Install pip : https://www.liquidweb.com/kb/install-pip-windows/
- type "pip -v" in your cmd to check if its installed
-
Installing virtualenv
- in your cmd type "pip install virtualenv"
-
Clone project from github to your Desktop
- open cmd(Windows + R) and navigate to Desktop(cd Desktop)
- git clone https://github.com/hitpythondevelopers/redditDupe.git
-
Create virtual environment
- navigate into the project folder(cd redditDupe)
- type "virtualenv venv"
- to activate the environment type "\venv\Scripts\activate.bat"
-
Install requirements
- pip install django