All entries for February 2021
February 02, 2021
Updating to FastAI v2 on ubuntu and anaconda
Follow-up to Keras, TensorFlow and more on the SC–RTP desktops from Rudo's blog
I wanted to upgrade my FastAI installation to V2, using my existing ubuntu installation of anaconda. After a few wrong tipps on google, I converged to the following.
First, I made a new conda environment, i.e.
$ conda create -n FastAI2
Then I installed all that was needed into the new environment:
$ conda update -n base -c defaults conda
$ conda install -c fastai -c pytorch fastai
$ conda install jupyter
$ conda install -c fastai nbdev
OK, that seems to work, i.e. the example jupyter notebooks from the FastAI V2 course now run.