Visual Studio not detected while installing CUDA 7.5 on Windows 7? - visual-studio

For the past few days I have installed many versions of visual studio, but nothing is picked up by CUDA 7.5:
I am on windows 7, what could be the issue?
EDIT: I have versions of Visual Studio that CUDA 7.5 asks for, please refer to the image for what versions I have installed.

In your installed programs, more precisely in the screenshot you provide, it seems you have the redist packages but not Visual Studio itself.
Did you really installed Visual Studio ?
Do you know the big difference between the redist packages and the integrated development environment itself ?
Plus, it seems by now Visual Studio 2015 is not yet supported.
See this page on the documentation from Nvidia.

Related

Visual Studio WDK integration Issue

Recently I installed Visual Studio 2017 Enterprise along with WDK 10 for 1709 My workloads contained C++ workload. . My machine is a Windows 8.1 Pro with net framework 4.6.1. After installing the WDK I expected the templates to come in the Legacy section of Visual C++ but no legacy option is present in it. I don't understand what is the problem. Please help me.
Thanks in advance
I resolved the issue. It was due to a missing windows 10 SDK. Reinstallating the WDK with appropriate SDK solved the problem
Developing drivers to windows is quite interesting one will be exposed to advanced Operating System Concepts. The set up for the environment will be IDE
IDE - Visual Studio (https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=Community&rel=16)
Compilers (WDK)
Debugger (WDK)
WDK contains both(https://go.microsoft.com/fwlink/?linkid=2085767). Latest Visual Studio(VS2019) will come along with the latest WDK(10, 1903 as of now).
Sometimes plugins might not work properly i.e integration issues between Visual Studio and WDk.
By going to the location "C:\Program Files (x86)\Windows Kits\10\Vsix\VS2019" and run VSIX installer.
Now in a new project, driver related templates are available.

cant find windows driver option under visual c++ in visual studio (WDK is installed)

i have already installed WDK. Any help?
enter image description here
Install Visual Studio 2015 or Visual Studio 2017.
Install Windows 10 SDK.
Install Windows Driver Kit (WDK) for your version of Visual Studio (there's a new version recently released for VS17).
Then you should be good to go. I've done this over and over repeatedly for a number of systems/new environments before, never ever encountered an issue when following this pattern.
I do not recommend having both Visual Studio 2015 and 2017 installed at the same time, or multiple SDK versions though. I've seen way too many conflicts due to this in the past.

Visual Studio 2013 and Windows Phone

I have installed Visual Studio 2013 Pro and then I wanted to install Windows Phone 8 SDK. But it installed Express Edition of VS 2012. Now if I delete VS 2013, what happens with my VS 2012? Can I delete it, because I don't have enough memory for it? Can you help me, please!
They are independent, you can uninstal one without influencing the other.
You can install this version of Visual Studio on a computer that already has an earlier version installed.
but
If you uninstall a version of Visual Studio on a computer that has more than one version installed, the file associations for Visual Studio are removed for all versions.
More information : http://msdn.microsoft.com/en-us/library/ms246609.aspx

Cuda 5.5 Toolkit (Windows) + MS Visual Studio requirement

I'm helping someone with a new Windows 7 workstation that has two nVidia GPUs and see that MS Visual Studio is required for the complete Cuda 5.5 Toolkit to install properly.
Silly question: is Visual Studio not a free download? Also: there are many different versions of Visual Studio 2012, which should be installed?
Thanks in advance for your comments and suggestions.
Dan
Visual Studio comes in free and non-free versions.
According to the CUDA 5.5 release notes, you need either the full version of Visual Studio 2012 or the free version, which is called Visual Studio Express, and has some limitations compared to the full (paid) version.
You want the version of Visual Studio which is for Desktop use (which includes the C++ environment).
"Visual Studio Express 2012 for Windows Desktop"

VS2008 on Windows 7 RTM with x64 compiler broken

I am having trouble getting x64 compilation to work on Windows 7 RTM (64-bit) with Visual Studio 2008 Professional (both with and without SP1). I have not installed the Windows 7 SDK, as Microsoft suggests might be the issue. The problem is that there are no x64/64-bit choices in the Configuration Manager of Visual Studio.
I do not have the "Microsoft Visual C++ Compilers 2008 Standard Edition" suggested in the link above installed on my computer. Any ideas what might fix this?
I have checked that I have the x64 compiler and tools installed with Visual Studio.
Solution found: Uninstall VS completely and reinstall. Issue resolved after SP1 installed (again). Very strange.
Are you using VS 2008 Express Edition?
You can add the x64 targets to the build configuration manually by downloading the Windows SDK (which include all the x64 compilers/linkers/libs/headers/... ) and following the instructions in this link:
http://jenshuebel.wordpress.com/2009/02/12/visual-c-2008-express-edition-and-64-bit-targets/
EDIT
Did you make sure to include the 64 bit toolset as part of the Visual Studio install? This toolset is an optional component that can be disabled during the initial install process. I believe you can add it back in by going through a Visual Studio repair process.
Original Answer
Are you using a clean windows 7 RTM install or did you upgrade from a previous version? There is at least one issue being reported by Visual Studio customers who upgraded an earlier build of Windows 7 to RTM.
Other, seemingly unrelated issue
http://www.hanselman.com/blog/VistaUsersUninstallVisualStudio2010Beta1BeforeUpgradingToWindows7.aspx

Resources