- To install Python v3.7.4 or greater, you can follow this guide.
- To install pip package manager:
- On Linux, run:
apt-get install python3-pip
. - On Windows, it should come included in the installation.
- On Linux, run:
- To install pipenv packaging tool, run
pip install pipenv
.
(If 'pip' is not found, try using 'pip3' instead.)
At the end, you should be able to:
- Get the Python version by running
python --version
.
(You may have to replace 'python' with 'python3.6', 'python3.7', etc.) - Get the pip version by running
pip --version
. - Get the pipenv version by running
pipenv --version
.