admin 管理员组

文章数量: 1086019

I'm trying to install a couple of python modules I need in a conda environment. Particularly deepspeed ran into the issue that I apparently did not have NVCC installed, so I installed it with

conda install -c nvidia cuda-compiler

after which I got a message that read like this:

C:\TortoiseTTS>CALL C:\Users\FuckOffWindows\miniconda3\envs\tortoise-voice\etc\conda\activate.d\vs2017_get_vsinstall_dir.bat
Did not find VSINSTALLDIR
Windows SDK version found as: "10.0.22621.0"
The system cannot find the path specified.
Did not find VSINSTALLDIR

I think the issue is that I don't have visual studio 2017 and I can't download the old build tools because I don't have a subscription. Is there any way I can get this to work with VS2022?

I tried reinstalling the packages, installing the VS2022 build tools, and deleting the 2019 Visual studio I still had installed.

本文标签: condaVisual studio version related error when trying to install python modules using anacondaStack Overflow