Package installation with pip in python 3.6 can be done through following steps:
- Open command prompt (cmd) [start–>cmd]
- Type pip install
Make sure system is connected to internet.
If you are connected to Internet through proxy [login username and password required], follow these steps:
- Open command prompt (cmd) [start–>cmd]
- Set the proxy settings by typing following commands:
set HTTP_PROXY=http://domain\username:password@proxyAddress:port
set HTTP_PROXY=https://domain\username:password@proxyAddress:port - Type pip install <package name>
Ex: pip install numpy;

Fig: Installing python packages with pip