Setting up your environment
Learn how to setup your environment with the GitAPI module.
- 1.Python 3.6 or greater
- 2.Pip
- 3.Requests module - This will automatically get installed with GitAPI
Open up your Terminal and run the following commands after navigating to your project directory
If
python
or pip
don't work, then try python3
or pip3
. python -m venv venv
source venv/bin/activate
pip install --upgrade pygitapi
Last modified 11mo ago