Open In App

How to Install Theano on Ubuntu?

Last Updated : 31 Jan, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Theano is a Python-based library that is basically used in the operations of mathematics. We can perform operations on multi-dimensional arrays so efficiently with this library. The main use of this library is done in building advanced deep learning projects or in the process of data visualization. If you want the speed to be more of execution then this library needs GPU as this can work smoother and faster in GPU rather than CPU. Some common features of Theano are:

  • It provides strong integration with NumPy.
  • It supports the transparent use of GPU.
  • It has good speed and stability optimization
  • It uses dynamic C code for faster evaluation of expressions.
  • It supports unit testing and self-verification.

In this article, we will look into the steps of installing Theano on the Linux Operating System. 

Requirements:

Installing Theano package on Linux using PIP

To install the Theano package in Linux we have to follow the following steps:

Step 1: First of all, we will install Python3 on our Linux Machine. Use the following command in the terminal to install Python3.

sudo apt-get install python3

Installing-Python3

Step 2: Now, install the pip module which is required to install the packages in Python3. So we use the following command for installation:

sudo apt install python3-pip

Installing-the-pip

Step 3: Now, install the Theano package by using pip module. Use the following command to install the Theano package.

sudo pip3 install theano

Installing-the-Theano-package

Verifying Theano package Installation on Linux using PIP

To verify if the Theano package has been successfully installed in your system run the below command in Terminal:

python3 -m pip show theano

You’ll get the below message if the installation is complete:

Verifying-Theano-package-installation


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads