1

I am planning to buy a (hopefully, inexpensive - I'm poorer than I used to be) Linux laptop to replace my Mac laptop. I'd like to be able to write & compile/interpret programs in C/C++, Python, SQL, and R. Does Ubuntu have/support all of these?

Might it be better to just buy a Windows laptop and then download Cygwin? I'd like to get Ubuntu, but I worry about cost.

Seth
  • 59,332

1 Answers1

4

Ubuntu supports C/C++, Python, SQL, and R for sure. Don't worry about this.

For R:

 sudo apt-get install r-base     

For Python:

sudo apt-get install python

You can write the code (Geani for example) and compile with GCC. For C:

sudo apt-get install build-essential
sudo apt-get install gcc

For SQL:

sudo apt-get install mysql-server

Docs: