Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

install c++ tools?

Programming languages, Coding, Executables, Package Creation, and Scripting.
Post Reply
Message
Author
User avatar
debu
Posts: 4
Joined: 2014-04-15 09:36

install c++ tools?

#1 Post by debu »

i am new from fedora
in fedora i use to install c++ tools

Code: Select all

yum group install "Development Tools"
yum install gcc-c++

install qt-devel qt-doc qt-creator 
or
chmod +x netbeans-7.4-cpp-linux.sh
./netbeans-7.4-cpp-linux.sh

yum install codeblocks
what can i do in debian?

User avatar
argorain
Posts: 58
Joined: 2014-04-15 05:31
Location: CR
Contact:

Re: install c++ tools?

#2 Post by argorain »

Hi.
Don't worry try google.
But, package you are looking for is g++ and qt4-dev-tools

Code: Select all

apt-get install g++ qt4-dev-tools codeblocks
If you want latest NetBeans, download it from their site or you can install it from repo too.

Code: Select all

apt-get install netbeans
Hope it help.
Vojtech "Rain" Vladyka
Vojtech "Rain" Vladyka

User avatar
stevepusser
Posts: 12930
Joined: 2009-10-06 05:53
Has thanked: 41 times
Been thanked: 71 times

Re: install c++ tools?

#3 Post by stevepusser »

In Debian, most packages that build against QT 4 use libqt4-dev.

There's also a metapackage that installs the standard C and C++ build tools called "build-essential"
MX Linux packager and developer

Funkygoby
Posts: 68
Joined: 2009-08-13 09:25

Re: install c++ tools?

#4 Post by Funkygoby »

Yes build-essential is a must if you are going to compile stuff. It provides "make" as a dependancy. Very convenient package!

User avatar
debu
Posts: 4
Joined: 2014-04-15 09:36

Re: install c++ tools?

#5 Post by debu »

thank you all
i made
apt-get install build-essential
apt-get install gcc-c++
apt-get install qt4-dev-tools
apt-get install netbeans
apt-get install codeblocks

Post Reply