Code command not found - Generic Linux

Page content

How to Install Code Command on Generic Linux

If you are working on a Generic Linux system and find that the code command is not available, you can follow these steps to install it.

Context

The code command is a popular command-line tool provided by Visual Studio Code for launching the editor from the terminal. It allows developers to open files and directories in Visual Studio Code directly from the command line.

Installation Steps

  1. Download Visual Studio Code:

    • Go to the Visual Studio Code website and download the Linux distribution package (.deb for Debian/Ubuntu-based systems, .rpm for Red Hat-based systems, or .tar.gz for Generic Linux).
  2. Install Visual Studio Code:

    • Depending on the package format you downloaded, follow the appropriate installation instructions for your Linux distribution. For example, for .deb packages, you can use dpkg -i command, for .rpm packages, you can use rpm -i command, and for .tar.gz packages, you can extract the archive and run the code binary from the extracted folder.
  3. Set PATH Variable (If Necessary):

    • After installation, if the code command is still not recognized in your terminal, you may need to add the installation directory to your PATH environment variable. You can do this by editing your shell configuration file (e.g., .bashrc, .bash_profile, .zshrc) and adding a line like export PATH=$PATH:/path/to/VSCode/bin.
  4. Verify Installation:

    • Open a new terminal window and type code to verify that the command is now recognized and launches Visual Studio Code.

Compatibility Note

In some versions of Visual Studio Code, the code command may not be automatically added to the system PATH during installation on Generic Linux systems. This can lead to the command not being found in the terminal. By following the steps above, you can manually install and configure the code command for use on your system.

Conclusion

By following these steps, you should now have the code command available on your Generic Linux system, allowing you to easily open files and directories in Visual Studio Code from the command line. Happy coding!