E: Unable to locate package vscode.deb E: Couldn't find any package by glob 'vscode.deb'
Asked
Active
Viewed 4,200 times
1 Answers
1
Open a terminal and run:
sudo apt update
sudo apt install snapd
sudo snap install code --classic

Nmath
- 12,333
apt
orapt-get
to install a package from a deb file. So assuming the deb file is in your current working directory, instead ofsudo apt install vscode.deb
you would need to usesudo apt install ./vscode.deb
– mchid Aug 09 '21 at 18:20.deb
file you downloaded? This is a very bad way to install software, especially if you are not very familiar with package management in Ubuntu. If you just need to install this software, look at the answer below to install the snap – Nmath Aug 09 '21 at 18:27