- Clone the workshop resources from Github with
git clone https://github.com/frankwang95/sbhacks_mnist
- Get the Anaconda Python distribution.
- Download:
- Mac:
curl https://repo.continuum.io/archive/Anaconda3-5.0.1-MacOSX-x86_64.sh -o anaconda_install.sh
- Linux:
wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh -O anaconda_install.sh
- Windows: Come back after you install Linux.
- Mac:
- Install:
- Download:
chmod +x anaconda_install.sh
./anaconda_install.sh
- Create a new virtual environment and switch to it.
conda create --name mnist --clone root
source activate mnist
- Install Tensorflow and Plotly with
pip install tensorflow plotly
- Start a Jupyter Notebook with
jupyter notebook
- Hit up
localhost:8888
in your browser if it doesn't go there itself.