On this page, click the button that says "Fork" and click "Create Fork." This will create an exact replica of this repository on your github account.
Go to the forked repository, and click the green button that says "Code."
Copy the first command that pops up under the HTTPS tab.
Go to terminal in your computer and cd into where you want to put your project in.
Run the following command:
git clone <link_you_copied>
You've successfully cloned your project! Now open your project in your editor of choice.
Within your project, go to terminal and run the following commands:
Create your virtual environment
(mac)
python3 -m venv venv
source venv/bin/activate
(windows)
python3 -m venv
.\venv\Scripts\activate
(For both versions) Install dependencies from the requirements.txt
pip3 install -r requirements.txt
After you are done, you can deacitvate the environment.