Installations for Deep Learning: Anaconda, Jupyter Notebook, Tensorflow, Keras | Keras #2
Hello World HD
Link to download anaconda - https://www.anaconda.com/download/
Create environment ([EnvironmentName] takes place of your environment's name) for Mac and PC -
conda create -n [EnvironmentName]
Activate environment for Mac -
source activate [EnvironmentName]
Activate environment for PC -
activate [EnvironmentName]
Install Tensorflow for Mac and PC -
conda install tensorflow
Install Keras for Mac and PC -
conda install Keras
Install nb_conda for Mac and PC -
conda install nb_conda
Launch jupyter notebook for Mac and PC -
jupyter notebook
In this video, I show how to set up the basic tools that I will be using in future videos for deep learning. These tools include Anaconda (which includes Conda, Jupyter Notebook, and Python), Tensorflow, Keras, and nb_conda (this package allows us to switch environments in Jupyter Notebook and is necessary, in my testing, for everything to work properly). ... https://www.youtube.com/watch?v=Ksu5zZIdfH0
15053725 Bytes