Author: Kazi Abu Rousan
C is hard but fast
But you need to be on guard to last.
Python is easy but slow
But you can use it to glow.
But if you have julia
Beautiful rhythms will flow.
---Me
Julia is a high-level, high-performance, dynamic programming language.
Most of you guys have heard or learnt languages like C, C++, Python, Ruby, Java and many more. All of these are great and have helped us in many things. Each type of people love different languages.
But when it comes to science community, most guys use Matlab, Mathematica, Ruby or Python.
This all are great but this all have changed now.
It's because of julia. It is a language which is fast as C (almost close to that with pure julia code), have functions with structure like maths( in pen and paper) and doesn't have Two-Language problem.
Due to this, we people of cheenta is going to make a tutorial on Basic Julia and then we will use Julia in different topics of Math , Physics and also Statistics.
This blog is written just to share few commands to install Julia in Ubuntu 20.04.
First open a terminal inside the folder where you want to save julia.
Then write this command:
wget https://julialang-s3.julialang.org/bin/linux/x64/1.7/julia-1.7.2-linux-x86_64.tar.gzThis will download the latest julia which is 1.7.2 in my case. You can also download the file from here.
Now extract the .tar.gz file using the command
tar -xvzf julia-1.7.2-linux-x86_64.tar.gzin folder_name/opt folder,i.e., we will create a folder inside the folder julia-1.7.2 with a name opt.
sudo cp -r julia-1.7.2 /opt/Now we will create a symbolic link to Julia using the command
sudo ln -s /opt/julia-1.7.2/bin/julia /usr/local/bin/juliaIt's done!!
Now, enjoy the Julia -- The elegant and fast language.

In 2025, 8 students from Cheenta Academy cracked the prestigious Regional Math Olympiad. In this post, we will share some of their success stories and learning strategies. The Regional Mathematics Olympiad (RMO) and the Indian National Mathematics Olympiad (INMO) are two most important mathematics contests in India.These two contests are for the students who are […]

Cheenta Academy proudly celebrates the success of 27 current and former students who qualified for the Indian Olympiad Qualifier in Mathematics (IOQM) 2025, advancing to the next stage — RMO. This accomplishment highlights their perseverance and Cheenta’s ongoing mission to nurture mathematical excellence and research-oriented learning.

Cheenta students shine at the Purple Comet Math Meet 2025 organized by Titu Andreescu and Jonathan Kanewith top national and global ranks.

Celebrate the success of Cheenta students in the Stanford Math Tournament. The Unified Vectors team achieved Top 20 in the Team Round.
Works great on ubuntu 22.04! Thank you!