Installation of fastai v2 on Windows

Fastai2 it works with windows. Fastai2 on Windows

fastai2 is old name and absolute now.
you can check https://github.com/fastai/fastai
try

git clone https://github.com/fastai/fastai
pip install -e “fastai[dev]”

pip install -e “fastai[dev]” from the fastai repo.
not fastai2.

dls = ImageDataLoaders.from_name_func(path, get_image_files(path), valid_pct=0.2, seed=42, label_func=is_cat, item_tfms=Resize(224), num_workers=0)
don’t dorget to set
num_workers=0 has to set 0 for windows.

1 Like