Saturday, May 16, 2020

How To Install Tensorflow Keras Spyder Jupyter Using Anaconda Navigator On Ubuntu 18

Video Tutorial -  https://youtu.be/5R09xVBAGPc

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

  Anaconda Navigator is a desktop graphical user interface (GUI) included in Anaconda® distribution that allows you to launch applications and easily manage conda packages, environments, and channels without using command-line commands. Navigator can search for packages on Anaconda Cloud or in a local Anaconda Repository. It is available for Windows, macOS, and Linux.

Offcial wesbite - https://docs.anaconda.com/
Anaconda Navigator Documentation - https://docs.anaconda.com/anaconda/navigator/

TensorFlow- https://www.tensorflow.org/
TensorFlow is a free and open-source software library for dataflow and differentiable programming across a range of tasks. It is a symbolic math library, and is also used for machine learning applications such as neural networks.

Keras-
Keras is one of the leading high-level neural networks APIs.

Spyder is an open source cross-platform integrated development environment for scientific programming in the Python language. Offcial website - https://www.spyder-ide.org/

Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text. Uses include: data cleaning and transformation, numerical simulation, statistical modeling, data visualization, machine learning, and much more. Offcial web -https://jupyter.org/
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Testing Environment:Ubuntu 18.04.LTS Bionic
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
apt update ; apt install -y build-essential net-tools curl git software-properties-common python3-pip neofetch

curl https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh --output anaconda.sh
sha256sum anaconda.sh
bash anaconda.sh
source ~/.bashrc
anaconda-navigator

Tensorflow -
python
import tensorflow as tf
print(tf.__version__)

Keras Version - python -c 'import keras; print(keras.__version__)'
jupyter-notebook --allow-root 

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment