I have installed python 3.6.0, you don\'t need to install pip manually if you are using python (>3.3). But When I am trying to access pip (pip --version), it throws me two error
You should try to write
python -m pip --version
If this gives an error message, install pip by downloading get-pip.py from https://pip.pypa.io/en/stable/installing/ and install with
python get-pip.py
Installing with pip is then done by
python -m pip install [package name]
Add your all path in your system variable instead of adding in user variable. It worked for me!!! :)