Skip to content

Latest commit

 

History

History
executable file
·
41 lines (27 loc) · 977 Bytes

File metadata and controls

executable file
·
41 lines (27 loc) · 977 Bytes

Installing Keras Deep learning env

Creating specific conda env (optional)

If you are using anaconda with conda package and env manager you can start by creating the dedicated environment.

# Creating new conda env with python 3.6
conda create -n deeplearning python=3.6 anaconda

# Activating the freshly created env
conda activate deeplearning

Installing modules with conda

conda install theano
conda install tensorflow
conda install keras

# Update freshly installed modules
conda update --all

Installing modules with pip

pip install theano
pip install tensorflow
pip install keras