phyton 3.6 jupyter notebook environment
30 Jun 2018
First commands in order to have a neat environment (recommend 3.6 version)
- Install Anaconda
anaconda: download
- Create an environment
conda create -n py36 python=3.6
- Enter into the environment (MacOS command)
source activate py36
- Install the following libraries
conda install jupyter
conda install numpy
conda install pandas
conda install scikit-learn
conda install matplotlib
pip install --upgrade tensorflow