Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to install Pandas package in Julia?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Julia is a very new and fast high-level programming language and has the power to compete with python. Like python, Julia is also compatible to do machine learning and data analysis part. In this tutorial, we will learn about how to install pandas and use it in our Julia environment.

julia-01

Checking for a pre-installed Julia Version:

Before we begin with the installation of Julia, it is good to check if it might be already installed on your system. To check if your device is preinstalled with Julia or not, just go to the Command line(search for cmd in the Run dialog( + R)).
Now run the following command:

julia

Julia-PreInstallation-Check

If Julia is not installed, please follow the steps on How to Install Julia on Windows?

Installing Pandas package

Follow these steps to make use of libraries like pandas in Julia:

Step 1: Use the Using Pkg command to install the external packages in julia.

using Pkg

Step 2: Add the Pandas package to install the required python modules in julia and to do so use the command given below:

Pkg.add("Pandas")

julia-pandas-02

Step 3: After adding pandas into your environment we use the following command to use Pandas in your code:

using Pandas

julia-pandas-03

Use Pandas library and begin with the Julia code on Pandas:
julia-pandas-04

My Personal Notes arrow_drop_up
Last Updated : 06 Oct, 2021
Like Article
Save Article
Similar Reads