Hello, Guys, what is the correct syntax to use pip with proxy.
Proxy pattern is "http://proxy.domain.com.br:8081" , also, username and password authorization is needed. *username is in a form of "DOMAIN\username"* when using the following (as documented in pip's -help) which is not working, i am getting "501 not implemented" error: pip install -- proxy http://DOMAIN\username:[email protected]:8081 <packagename> also tried the followings: pip install -- proxy http://username:[email protected]:8081 <packagename> pip install -- proxy username:[email protected]:8081 <packagename> pip install -- proxy DOMAIN\username:[email protected]:8081 <packagename> In addition i tried using url encoding to escape \ Any suggestions? -- You received this message because you are subscribed to the Google Groups "virtualenv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/python-virtualenv. For more options, visit https://groups.google.com/d/optout.
