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.
-
Python3-pip
sudo apt-get install python3-pip python3-dev pip3 --version
-
NumPy
pip3 install numpy
-
SciPy To install the SciPy run the following command, this command will install the SciPy and the required dependencies as well:
pip3 install numpy scipy matplotlib ipython jupyter pandas sympy nose
Some errors I encountered during the installation of Scipy. If you have a stable installation, you can ignore the installation errors that I talk about below:
-
BLAS
sudo apt-get update sudo apt-get install libatlas-base-dev
Use the following command to install the Theano package:
sudo pip3 install theano
To verify if the Theano package has been successfully installed in your system run the below command in Terminal:
python3 -m pip show theano
Top comments (0)