Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add CNTK virtualenv to Visual Studio Python project

I followed Setup CNTK on Windows, and confirmed that I can run CTNK from my local command prompt.

C:\local\Anaconda3-4.1.1-Windows-x86_64\envs\cntk-py34>.\Scripts\activate.bat
(root) C:\local\Anaconda3-4.1.1-Windows-x86_64\envs\cntk-py34>set PATH=C:\local\CNTK-2-0-beta3-0-Windows-64bit-CPU-Only\cntk\cntk;%PATH%
(root) C:\local\Anaconda3-4.1.1-Windows-x86_64\envs\cntk-py34>python -i
Python 3.4.4 |Continuum Analytics, Inc.| (default, Jun 15 2016, 15:25:08) [MSC v.1600 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from cntk import Trainer
>>>

I want to use Python Tools Visual Studio, so I tried to add this virtualenv to a new Python project by "Add Existing Virtual Environment...", but I got this following error.

We could not identify a virtual environment in the selected path.

Adding another existing virtualenv worked fine. I appreciate your help.

like image 730
Naoto Usuyama Avatar asked Nov 25 '16 23:11

Naoto Usuyama


People also ask

How do I create a virtual environment in Python Visual Studio?

Right-click Python Environments in Solution Explorer and select Add Environment. In the Browse dialog that appears, navigate to and select the folder that contains the virtual environment, and select OK. If Visual Studio detects a requirements. txt file in that environment, it asks whether to install those packages.

How do you activate a virtual environment in VS code?

Using the Create Environment command From within VS Code, you can create non-global environments, using virtual environments or Anaconda, by opening the Command Palette (Ctrl+Shift+P), start typing the Python: Create Environment command to search, and then select the command.


1 Answers

Here the steps that I use for existing conda env from Visual Studio:

  1. Create your Anaconda environment as mentioned in the setup instruction (you already done that).
  2. In VS, from View->Other Windows select “Python Environments”. a. Add a custom environment, and fill all the fields from your Anaconda environment path, yours is: "C:\local\Anaconda3-4.1.1-Windows-x86_64\envs\cntk-py34" b. Make sure that the version is 3.4 and Architecture is x64. c. Then click Apply, Apply will take long to complete, there will be an inline progress bar wait for it to finish.
  3. In the solution explorer, under your python project: a. Right click on “Python Environments” and select “Add\Remove Python Environments”. b. Select the custom environment that you added in (2)
  4. Close Visual Studio, and activate the Anaconda environments that you created in (1). a. From this environment type (the path to your VS x64 native environment): "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64 b. Launch Visual Studio from this environment by typing “devenv.exe”.

Step (4) is crucial, or Visual Studio won't find CNTK dependency DLLs.

like image 84
Emad Barsoum Avatar answered Oct 09 '22 06:10

Emad Barsoum