These are steps to replicate the AWS AMI setup on your own computer (assuming you have NVIDIA CUDA GPUs)
Recommended hardware: NVIDIA GTX-1080 Ti
Python version should be 3.6+
https://conda.io/docs/user-guide/tasks/manage-python.html
git clone https://github.com/fastai/fastai.git
- The environment.yml file is under this directory.
- The environment file contains all the dependencies needed: https://github.com/fastai/fastai/blob/master/environment.yml
cd fastai/
This step installs python3-dev package.
sudo apt-get install python3-dev
This step installs all of the dependencies.
conda env create -f environment.yml
Do this step every time you login. Or else put it in your .bashrc
file.
source activate fastai