Pip installation + Basic Powershell Navigation
pip is a Python package that lets you install modules directly from your command line (Powershell). It will be used to install all other modules in this guide.
1. Go to https://bootstrap.pypa.io/get-pip.py and copy and paste all the code into Notepad. Save As a python file (file ending .py) and take note of the location.
2. Open Powershell and navigate to the location that you saved it in. In this case, I saved it in the default location that Powershell starts in, but I will also show you how to navigate to a different location in Powershell. Example:
3. Install pip by running the Python file: “python get-pip.py” in Powershell.