0

I just installed VScode with anaconda on Ubuntu 18.04 and after installation it won't open.

I did the same on Ubuntu 16 LTS but it worked fine. I tried to uninstall it from anaconda navigator and install it with this procedure but it's still not working. When I click on the icon just nothing happens.

 code --verbose 

Gtk-Message: 17:32:24.579: Failed to load module "overlay-scrollbar" 
Gtk-Message: 17:32:24.621: Failed to load module "canberra-gtk-module" [main 4:32:25 PM] Startup error: ,,
Error: EACCES: permission denied, mkdir '/home/mohsen74x/.config/Code/CachedData',Error: EACCES: permission denied,
mkdir '/home/mohsen74x/.config/Code/logs/20180528T173225' [main 4:32:25 PM] Lifecycle#kill() 
Zanna
  • 72,312

1 Answers1

1

I fixed it like this:

sudo apt-get install --reinstall overlay-scrollbar-gtk2
sudo apt install libcanberra-gtk-module libcanberra-gtk3-module

and for permission:

sudo chown -R mohsen74x:staff /home/mohsen74x/.config/Code

this solved my problem.

Zanna
  • 72,312