Skip to content

Instantly share code, notes, and snippets.

@andrew-ma
Last active August 12, 2021 05:45
Show Gist options
  • Save andrew-ma/a82d079a640af624d32a8bfd6c0bd961 to your computer and use it in GitHub Desktop.
Save andrew-ma/a82d079a640af624d32a8bfd6c0bd961 to your computer and use it in GitHub Desktop.
Install Vscode Extensions Offline
# Save extensions to file
code --list-extensions | sed '/\(vscode-pylance\|jupyter\)/d' > ~/vscode_extensions.txt
# Install extensions from file
cat ~/vscode_extensions.txt | xargs -n 1 code --force --install-extension
# Uninstall extensions from file
cat ~/vscode_extensions.txt | xargs -n 1 code --force --uninstall-extension
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment