# conda env export > environment. yml
code --list-extensions > requirements.txt
# conda env create --file environment.yml
./install.sh
Created
June 7, 2022 01:18
Store and Install VSCode extensions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while read -r line; do | |
echo $line | |
code --install-extension $line | |
done < "requirements.txt" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment