-
Notifications
You must be signed in to change notification settings - Fork 40
Python, PIP, & Git Setup Guide
Leviaria edited this page Jun 18, 2024
·
1 revision
- Administrative access is required for software installations.
-
Download Python 3.10:
- Visit the Python 3.10.0 Release page and select the installer appropriate for your operating system.
-
Installation:
- Execute the downloaded installer. Ensure that you check Add Python to PATH before clicking Install Now.
- PIP is included by default with Python installations from version 3.4 onwards.
- You can check if PIP is installed correctly by running
pip --version
in your command line.
- If PIP is not installed or needs an upgrade:
-
Download Script:
- Retrieve the
get-pip.py
script from Bootstrap PIP. Use your browser or a command line tool:curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
- Retrieve the
-
Install PIP:
- Run the script with Python:
python get-pip.py
- Run the script with Python:
-
-
Download Git:
- Access Git Downloads and choose the version for your operating system.
-
Installation:
- Follow the on-screen prompts to complete the Git installation.
These steps will help ensure your system is properly configured and that necessary tools are available.
-
Python Version Check:
- Run
python --version
to display the currently installed version of Python.
- Run
-
PIP Installation Check:
- Use
pip --version
to check if PIP is installed and to view the current version in use.
- Use
-
GIT Installation Check:
- Type
git --version
to determine if GIT is installed and to find out the installed version.
- Type