How can I know that I have g++ installed in my ubuntu?

55,954

Solution 1

To find out what compilers are installed, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

dpkg --list | grep compiler

enter image description here

Solution 2

Type "gcc" in terminal and then press Tab in your keyboard,the versions of gcc that are installed,will be shown. good luck

Share:
55,954

Related videos on Youtube

Pavel
Author by

Pavel

Updated on September 18, 2022

Comments

  • Pavel
    Pavel over 1 year

    I have recently installed ubuntu 14.04 . I tried to run a c++ code by a command like this:

    g++ first.cpp -o first
    

    Then it said:

    The program 'g++' is currently not installed. You can install it by typing:
    sudo apt-get install g++
    

    And then I did. After typing it and pressing enter it showed a message like this:

    gedit is already the newest version.
    libgrail6 is already the newest version.
    xserver-xorg-core is already the newest version.
    libgdata13 is already the newest version
    ...
    

    (and many more lines like this)

    Then I tried to run the same command given above again. But the terminal said again that I don't have g++ installed. What am I missing here? How to run the C++ code now?

    • Eliah Kagan
      Eliah Kagan over 9 years
      Packages sudo apt-get install g++ selected--gedit and so forth--aren't dependencies of g++ and shouldn't be listed. Thus apt-get's matching g++ as a pattern (a regular expression) a package name. (Actually, it might be matching the first + as part of a regexp and the second as special APT syntax, I'm not sure.) This doesn't normally happen when trying to install g++; when it does, it means it does not know a package whose exact name is g++ actually exists. The solution is here. (c.f. this question).
  • Eliah Kagan
    Eliah Kagan over 9 years
    Isn't it possible for gcc to be installed without g++? (Or for some versions of gcc to be installed without the corresponding versions of g++?)
  • ivan.ukr
    ivan.ukr over 8 years
    sudo apt-get install build-essential