Jason R. Coombs <jar...@jaraco.com> added the comment:
I was able to export the configuration using these instructions: https://docs.microsoft.com/en-us/visualstudio/install/import-export-installation-configurations?view=vs-2019 That produced this config: { "version": "1.0", "components": [ "Microsoft.VisualStudio.Component.CoreEditor", "Microsoft.VisualStudio.Workload.CoreEditor", "Microsoft.VisualStudio.Component.Roslyn.Compiler", "Microsoft.Component.MSBuild", "Microsoft.VisualStudio.Component.TextTemplating", "Microsoft.VisualStudio.Component.VC.CoreIde", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", "Microsoft.VisualStudio.Component.Windows10SDK.19041", "Microsoft.VisualStudio.Component.VC.Redist.14.Latest", "Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core", "Microsoft.VisualStudio.Workload.NativeDesktop" ] } Using that, I tried to install those components using vs_buildtools: # Install Visual Studio RUN ./vs_buildtools.exe --quiet --wait --norestart --nocache \ --add Microsoft.VisualStudio.Component.CoreEditor \ --add Microsoft.VisualStudio.Workload.CoreEditor \ --add Microsoft.VisualStudio.Component.Roslyn.Compiler \ --add Microsoft.Component.MSBuild \ --add Microsoft.VisualStudio.Component.TextTemplating \ --add Microsoft.VisualStudio.Component.VC.CoreIde \ --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 \ --add Microsoft.VisualStudio.Component.Windows10SDK.19041 \ --add Microsoft.VisualStudio.Component.VC.Redist.14.Latest \ --add Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core \ --add Microsoft.VisualStudio.Workload.NativeDesktop In order to avoid noise here, I'm going to continue the investigation in https://github.com/jaraco/jaraco.windows/issues/21. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue43298> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com