No module named 'fastai'

Hi
you can refer this thread:

I used these steps, and error got resolved for me:

  1. Open terminal

  2. Navigate to anaconda3
    cd anaconda3

  3. update conda
    conda update conda

  4. Navigate to conda env section and create new environment named fastai
    cd envs
    conda create --name fastai

  5. make fastai environment as current working directory
    cd fastai

  6. clone github repository of course-v3
    git clone https://github.com/fastai/course-v3.git

  7. make course-v3 as current working dir
    cd course-v3

  8. open jupyter notebook
    jupyter notebook

  9. Click New->Terminal in Jupyter, then type:
    conda install -c fastai fastai
    this step will install all required libraries.

after this you can update conda environment ( for me it was updated)

5 Likes