Open herleeyandi opened 7 years ago
Seems to me you want to use MSVC 14.0
INFO: MSVC_VERSION = 14
but you end up using MSVC 12.0:
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/amd64/cl.exe
Any idea why this is? Is MSVC 12.0 on your path before MSVC 14.0?
In short I want use my Python 3.5
CMake will just pick python.exe on your PATH. Make sure that the command line you use has Python 3.5.
If Ninja keeps erroring try with VS WITH_NINJA=0
.
Yes that's why I want to ask can we just manually edit it so I can use proper setting without messing up with my environment variable?
@willyd Wait I just see in build_win.cmd let me try first.
@willyd Finally I have done until this so far. What must I do next?, how can I test this? -Thank you-
Finally I have done until this so far. What must I do next?, how can I test this?
How did you fix it? I am having the same issue.
Hello, I am new in caffe windows using CMake. Now I have 2 anaconda in my PC. First contains
python 2.7
and others containspython 3.5
. I am usingwindows 7 64bit
,CUDA 8.0
, andCUDNNv5
. I havevisual studio 2013 (or we can say v12)
andMSVC version=14
. However when I am running CMake I have this error. Is there any ready made configuration, we just change what we need. For example like makefile.config of caffe in linux. We just change what version that we want, and specified the path manually. Because in here I want to use anaconda 3 but the script wants me use anaconda 2. In short I want use my Python 3.5. -Thank you-