How to configure Issac Sim with Visual Studio 2026? #583
-
|
I can not find Visual Studio 2022 installation so I install 2026 version,but when I write the configuration in the repo.toml as follow: And then run The terminal said that: I would be really appreciate it if someone can lend me a hand! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Visual Studio 2026 is supported for building Isaac Sim -- you just need to install the required MSVC toolset and fix your ProblemThe error message tells you exactly what's wrong:
Your VS 2026 installation is missing the MSVC v145 C++ compiler toolset. Fix: Install MSVC v145
Alternatively, re-run the recommended install command which includes these components: winget install --id=Microsoft.VisualStudio.Community -e --override "--add Microsoft.VisualStudio.Workload.NativeDesktop --includeRecommended"Fix: Correct Your repo.tomlYour configuration has some issues: # [x] Your current config
vs_version = "vs2026" # Wrong format
msbuild_version = "17" # Wrong for VS 2026
# [v] Correct config for VS 2026
vs_version = "18" # VS 2026 = version 18
msvc_version = "v145" # Correct
msbuild_version = "18" # VS 2026 uses MSBuild 18
winsdk_version = "10.0.26100.0" # CorrectHere's the corrected [repo_build.msbuild]
sln_file = "isaac-sim.sln"
link_host_toolchain = true
vs_version = "18"
vs_path = "D:\\Microsoft Visual Studio\\18\\Community\\"
vs_edition = "Community"
msvc_version = "v145"
msbuild_version = "18"
winsdk_version = "10.0.26100.0"
winsdk_path = "D:\\Windows Kits\\10\\bin\\10.0.26100.0"
"token:in_ci==false".version_check_vs_version = "2026"
"token:in_ci==false".version_check_msvc_version = "v145"
"token:in_ci==false".version_check_msbuild_version = "18"
"token:in_ci==false".version_check_winsdk_version = "10.0.26100.0"Quick WorkaroundIf you want to test the build immediately after installing MSVC v145, you can skip strict version checking: build.bat --skip-compiler-version-checkReferenceSee the Windows Developer Configuration docs for the full setup guide. Let us know if you still have issues after installing MSVC v145! |
Beta Was this translation helpful? Give feedback.
-
|
Since there has been no response from the original poster for a while, I’m going to close this discussion. The earlier reply above explains how to configure Visual Studio 2026 support for Isaac Sim, including installing the required MSVC v145 toolset and correcting the repo.toml settings. If you run into further issues, please open a new discussion with your updated logs and configuration details, and include a link to this discussion for context. |
Beta Was this translation helpful? Give feedback.
Hi @6157894t53484-dot,
Visual Studio 2026 is supported for building Isaac Sim -- you just need to install the required MSVC toolset and fix your
repo.tomlconfiguration.Problem
The error message tells you exactly what's wrong:
Your VS 2026 installation is missing the MSVC v145 C++ compiler toolset.
Fix: Install MSVC v145