You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The installer is supposed to install every dependency inside the webui folder but one exception is Visual Studio. I don't want to install Visual Studio system wide as I use Portable Build Tools to manage my VS build tools and it is far more flexible. You can install Visual studio build tools anywhere you want. https://github.com/Data-Oriented-House/PortableBuildTools
One quirk of NVCC is that it is actively looking for vcvarsall.bat under VC/Auxiliary/Build/, but it can be a empty file, it does not do anything. Portable build tools does not install this file, have to put a empty vcvarsall.bat there. I have to do this to make torch compile work.
The text was updated successfully, but these errors were encountered:
Thank you, this could be a solution. Did you use it yourself on this project?
I generally try to have something that works without more fixing because there's not a lot of development resource, but I also want to support users using their own versions/configurations.
The installer is supposed to install every dependency inside the webui folder but one exception is Visual Studio. I don't want to install Visual Studio system wide as I use Portable Build Tools to manage my VS build tools and it is far more flexible. You can install Visual studio build tools anywhere you want. https://github.com/Data-Oriented-House/PortableBuildTools
One quirk of NVCC is that it is actively looking for vcvarsall.bat under VC/Auxiliary/Build/, but it can be a empty file, it does not do anything. Portable build tools does not install this file, have to put a empty vcvarsall.bat there. I have to do this to make torch compile work.
The text was updated successfully, but these errors were encountered: