Add CNTK virtualenv to Visual Studio Python project

心已入冬 提交于 2019-12-14 03:19:48

问题


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.

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


回答1:


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.



来源:https://stackoverflow.com/questions/43154187/how-to-make-visual-studio-2017-pvts-see-my-existing-virtual-envs-created-with

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!