skip to Main Content

I just installed ubuntu 24.
I’m a django developer and I’ve been working fine with Visual Studio Code, but today when I tried to open my vscode, while it was opening it closed without any error or message! 🙁

I restarted my computer and reinstalled Vscode.
But nothing that nothing:(

note: I installed vscode from app center on ubuntu

2

Answers


  1. Open vscode through the command line, and then you will get the full error message.
    You can also see logs in ~/.config/Code/logs.

    Login or Signup to reply.
  2. I’v faced with the same issue. I think you’v installed it from snap store. You need to install it with deb package. Uninstall current code(remove it). Go to official website of Visual Studio Code, download the last version and install it with command

    sudo dpkg -i code_1.90.0-1717531825_amd64.deb
    

    Infact the command is :

    sudo dpkg -i <deb_file_name>.deb
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search