Posts

Showing posts from April, 2017

Using pip in windows under a proxy

Damn these proxies! They make our life difficult but seems to be necessary to at least provide a basic security to infrastructures such as Universities and firms. This is my first post and I would be telling about how to use pip command under a proxy. Well, it is quite simple. To install using pip pip --proxy=http://<YourProxyAddress>:<YourPort>@<username>:<pwd> install <package_name> Voila! That's it.