- Click on this link to download Python 3.6.8.
- Run the installer.
- Check 'Add Python 3.6 to PATH'.
- Click on 'Install Now'.
- Complete the installation.
- Once installation is complete, open 'cmd' and test if Python 3.6.8 has been installed successfully by typing
python --version
.
- Hit 'Enter' key and you should see
Python 3.6.8
as the output.
- Open 'cmd' and install the Virtualenv python package.
- Type
pip3 install virtualenv
- To check if the package has been installed successfully, type
pip3 list
and you should see virtualenv
and its version in the list of installed packages.