It’s very difficult for me to give much/any help to those who try this on windows, you guys really need to find someone who has windows access and knows it well to be of any guidance.
As you can see from the outputs C:\Users\Andrew\Anaconda3\fastai\old
needs to be in sys.path
and it’s not. The quick one off hack would be to start the notebook with:
import sys
sys.path.append("C:\Users\Andrew\Anaconda3\fastai\old")
import fastai
where you tell python explicitly where to find fastai. That’s if haven’t installed fastai and want to you use it directly from the clone. If you have installed it, then first check under those folders in sys.path
and see whether the fastai
folder is there physically. If it is then it should just work.
But the correct solution is to figure out the windows symlinks, but I’m not your man for that. You need to look here instead.