Installing Fastai with conda UnsatisfiableError

I am trying to install fastai as per the docs.

I have run:

conda create -n fastai_env python=3.8

conda install -c fastai fastai

and I get:

(fastai_env) root@745277ce8767:~# conda install -c fastai fastai
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: / 
Found conflicts! Looking for incompatible packages.
This can take several minutes.  Press CTRL-C to abor- 
failed                                                                                                                                               

UnsatisfiableError: The following specifications were found to be incompatible with each other:

Output in format: Requested package -> Available versions

any ideas what is going wrong?

Maybe include the pytorch channel?
`conda install -c fastai -c pytorch fastai ’

From this page: https://docs.fast.ai/

Ah okay adding the -c pytorch fixed it.

Also I was able to install in the end using pip instead