Home:ALL Converter>Automating Installation of VS Code Plugins

Automating Installation of VS Code Plugins

Ask Time:2018-09-30T22:39:51         Author:Daniel

Json Formatter

I'm using VS Code with Ubuntu. I have a shell script to automate the installation of my development tools. I can install VS Code but I'm having trouble automating the installation of VS Code plugins e.g. the Python plugin

Is there an easy way to do this with a shell script?

Author:Daniel,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/52578909/automating-installation-of-vs-code-plugins
csaar :

After installing VSCode, it provides a command line interface. So u can simple install an extension like this:\n\ncode --install-extension ms-python.python\n\n\nIf u have multiple extensions to install, u could create ur own extension and bundle them in the \"extensionPack\" section (package.json), link.",
2018-09-30T18:10:55
yy