Open In App

How to install Pandas package in Julia?

Last Updated : 06 Oct, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads