Installing fastai on Windows 10: Failed building wheel for fiona

Hi!

I’ve got the same issue with installing fast.ai. It follows from the traceback that fiona is a package that geopandas depends on, which plotnine depends on. Plotnine is a python version of the glorious ggplot2, so it is not strictly needed to train neural networks. However, it does get fetched via pip, so you have to build it. To solve the problem, you can do the following:

  1. Do the installation the usual way right until you encounter this error.
  2. Activate the environment with conda activate fastai
  3. Install prebuilt fiona with conda install fiona
  4. Run conda env update once again.
  5. You are ready to go, go ahead and activate the environment :slight_smile:

The following versions of plotnine (as stated at their github) will not depend on geopandas, so I hope this problem will just be fixed all by itself.

2 Likes