I created a new anaconda enviroment using "conda env create -n TestOne" which created a new Python 3.5 environment with no packages installed.
I am using PTVS with Visual Studio and I manually added the new environment and paths as per the following: http://kronoskoders.logdown.com/posts/73461-using-anaconda-and-ptvs
I then activated the environment and ran in the command prompt: conda install -c conda-forge pyside
Now when I run "pip list" it is different then "conda list" and it appears that the Python Environments->TestOne in Visual Studio shows the pip list. Is there any way to get an accurate list of what is actually installed using anaconda?
If I go to Tools->Python Tools->Python Environments, select my created TestOne environment, select Intellisense from the drop down and then Refresh DB I see PySide is in the list and it is available in Intellisense.
It is a bit confusing to me just getting into Python development that the setup appears to work opposite with this vs something like C#. With C# you download and reference libraries per project where as with Python you have environments with libraries as part of them that are available to every project after the first install.
Is there any way for Visual Studio to show the conda list instead so I can easily see what is actually installed?