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

Related Articles

How to Install Julia in an anaconda environment?

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

Julia is a high-level open-source programming language, developed by MIT. It is a dynamic, high-performance programming language that is used to perform operations in scientific computing. Anaconda is a free and open-source distribution of the programming languages Python and R programming languages for scientific computing, data processing, and data analytics. It includes Jupyter, Spyder, and a powerful CLI to manage the development environment. Let’s discuss how to install Julia programming language in an anaconda environment.

Installation of Julia in an anaconda environment

Step 1: Click here to download the latest version of Anaconda. 

Anaconda

 

Step 2: Next, install Anaconda 

$ bash Anaconda3-2022.05-Linux-x86_64.sh

Installing-anaconda

 

Accepting-license-terms

 

Anaconda-installed

 

Step 3: Verify the installation.

$ conda –version

Verifying-installation

 

Step 4: Create and activate a new environment by using conda cli.

$ conda create -n <env-name>

$ conda activate <env-name>

Creating-environment-name

 

Activating-environment

 

Step 5: Finally, install Julia from the conda-forge channel.

$ conda install -c conda-forge julia

Installing-julia

 

Packages-downloading

 

Julia-installed

 

Step 6: Finally, verify the installation by opening Julia REPL

Verifying-installation

 

Compiling Julia files

We can also compile Julia files using julia-cli. For now, I have created a very basic julia file that outputs “Geeks for Geeks”.

Julia




print("Geeks For Geeks")


Now, compile the file

$ julia filename.jl

Compiling-files

 

Using IJulia on Jupyter Notebook

We can also use Julia with Jupyter Notebook by installing the IJulia package.

Step 1: Open the Julia REPL 

$ julia

Step 2: Install IJulia package from Julia CLI

> using Pkg

> Pkg.add(“IJulia”)

Installing-Ijulia

 

Installed

 

Step 3: Open Jupyter Notebook

 $ jupyter notebook

Opening-jupyter-notebook

 

Step 4: Click on “New” on the top right corner and create a new notebook.

Creating-new-notebook

 

Notebook-created

 

My Personal Notes arrow_drop_up
Last Updated : 02 Jun, 2022
Like Article
Save Article
Similar Reads
Related Tutorials