-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
looking for a recipe to install c++ and python2.7 #55
Comments
You can install all desired Visual Studio Build Tools components in one choco.exe invocation using package parameters, e.g.:
(the package passes nearly all package parameters directly to the VS installer, so the official Microsoft documentation applies: https://docs.microsoft.com/en-us/visualstudio/install/use-command-line-parameters-to-install-visual-studio?view=vs-2017) The python2 package is completely unrelated, so if you want to install everything using only one choco package then you need to craft such a package yourself, for example by merging the install scripts of the existing packages. I'm not sure why you would need to do that, however - could you elaborate on why you cannot install two or more packages? |
I don't need the For the node-core development we use python for build scaffolding, tooling and as a test harness. |
P.S. thank you for you time and attention. |
So, have you been able to determine the set of component identifiers needed to install all components required by your development process in one go and translate it to package parameters? |
Hello,
At the Node.js project we're trying to create an installer utility that will get all the build tools needed to later compile native addons.
ATM we use boxstarter to do:
But I was wondering if we could do it with a single package something like
visualstudio2017buildtools + vctools + python2
?Any help would be much appreciated.
The text was updated successfully, but these errors were encountered: