In trying to download vscode from the Ubuntu software application, I ran into the following error:
Detailed errors from the package manager follow:
snapd returned status code 400: Bad Request
After Googling this error I took the advice given by this following link:
When I try to install vscode, snapd returns error code 400
which led me to running the following command in my terminal:
snap install vscode --classic
That command worked and all, but now I can't find where and how to start vscode on my machine.
Anyone have any tips?
sudo snap install vscode --classic
, and it was installed to/snap
, and since/snap/bin
is in myPATH
, I could just runvscode
in a terminal. It also showed up in the Dash after that. – muru Oct 17 '17 at 02:03