I was a little addicted to using Anaconda with Visual Studio + PTVS, so a memorandum
Edit C: \ Program Files \ Microsoft Visual Studio 14.0 \ Common7 \ IDE \ devenv.exe.config
Add an element for system.net
```xml
<system.net>
<settings>
<ipv6 enabled="true"/>
</settings>
<defaultProxy enabled="true" useDefaultCredentials="true">
<proxy bypassonlocal="True" proxyaddress="http://[username]:[pw]@[ip]:[port]"/>
</defaultProxy>
</system.net>
```
Download from PTVS GitHub
Download | Contents |
---|---|
Python Tools for VS 201 | Body of PTVS |
Sample Pack | Templates for project creation are added |
Machine Learning Pack | Azure Machine Learning connectivity kit |
Anaconda includes Python 3.5.1, so if you only use Anaconda, you don't need to install it separately. Anaconda Package List
Open "Tools-> Options-> Python Tools" in Visual Studio
Create a new environment from "Add Environment"
Specify the one in Anaconda for Path, Windows Path, Library Path
that's all
Recommended Posts