Jump to content

How can I setup Atom for C and python programming ? (On Pop OS)

Go to solution Solved by Sauron,

Are you getting any errors? Maybe there's just a problem with your code... it seems like the program is being compiled since there are binaries in your folder.

I want to use Atom as my IDE. I know its not, but I have heard that you can set it up with the gcc compiler to act like an IDE, but since I am new to POP OS and linux in general I don't know how to do so. I used to use VS Community edition on windows but then I moved to Pop OS and am on the lookout for an IDE or an Editor + Compiler setup.

 

Link to post
Share on other sites

It's mostly just a matter of installing the correct extensions. Just look for "C" in the extensions browser. If you don't have gcc you'll have to install it; in ubuntu derivatives it should be part of the build-essential metapackage:

sudo apt install build-essential

double check that it's installed:

gcc --version

 

Don't ask to ask, just ask... please 🤨

sudo chmod -R 000 /*

Link to post
Share on other sites

1 hour ago, Sauron said:

It's mostly just a matter of installing the correct extensions. Just look for "C" in the extensions browser. If you don't have gcc you'll have to install it; in ubuntu derivatives it should be part of the build-essential metapackage:

sudo apt install build-essential

double check that it's installed:

gcc --version

 

gcc --version returns the following (so its installed I guess ?)image.thumb.png.534995a0ecfe94705f8896f6a686996c.png

Link to post
Share on other sites

Are you getting any errors? Maybe there's just a problem with your code... it seems like the program is being compiled since there are binaries in your folder.

Don't ask to ask, just ask... please 🤨

sudo chmod -R 000 /*

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×