Getting Started with fastai-v2

Perhaps symlink the local dir to a dir called fastai2 in your site_packages folder? Then import from fastai2?

Yeah, that seems to do the trick.

In commandline:
cd /home/user/anaconda3/envs/fastai/lib/python3.7/site-packages
ln -s /home/user/github/fastai_dev/dev/local/ fastai2

And then in Jupyter:
from fastai2.data.all import *
from fastai2.vision.core import *
(and following from pets tutorial)

But is this hack the way to use it?