Running FastAI deep learning environment locally on Mac OS
Fast.ai is providing a course on deep learning.
The team already set up a image which (claimed) as ready-to-use on Amazon EC2, but if you don’t have enough credit, you can set up a same environment on Mac OS.
- Install Anaconda Python
- Create a new environment
conda create --name fastai python
- Switch to the new environment
source activate fastai
pip install Theano
pip install keras
- Install skicit-learn
conda install numpy scipy scikit-learn -y
- Install opencv3
conda install -c https://conda.binstar.org/menpo opencv3
- Install jupyter
pip install jupyter
- To run course’s notebooks
jupyter notebook
blog comments powered by Disqus