How do I remove the visual studio connected environment CLI from my Mac since base on the new documentation this is not longer require for Azure Dev Spaces?
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
Hi @rspaulino, here are some Bash commands you can run to completely remove the VSCE command line on macOS:
sudo rm -rf $HOME/lib/vsce-cli
rm -f $(which vsce)
rm -f /etc/bash_completion.d/vsce
source ~/.bash_profile
Most helpful comment
Hi @rspaulino, here are some Bash commands you can run to completely remove the VSCE command line on macOS: