Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 977 Bytes

setup_personal_dl_box.md

File metadata and controls

35 lines (26 loc) · 977 Bytes

Setting Up a Personal Deep Learning Computer

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

Step 1: Install Anaconda Python 3.6

Python version should be 3.6+
https://conda.io/docs/user-guide/tasks/manage-python.html

Step 2: Clone the fastai library

git clone https://github.com/fastai/fastai.git

Step 3: Go to directory where environment.yml file

cd fastai/ 

Step 4: Create the virtual environment

This step installs all of the dependencies.

conda env create -f environment.yml

Step 5: Activate virtual environment

Do this step every time you login. Or else put it in your .bashrc file.

source activate fastai