I have installed FEniCS through anaconda and activate it by
source activate fenicsproject
Now the python has referred to
(fenicsproject) Nailo[Dolfin]$which python
//anaconda/envs/fenicsproject/bin/python
The FEniCS works in the terminal. However, when I open a jupyter notebook and try to import dolfin like
from dolfin import *
The error shows
ImportError: No module named 'dolfin'
How can I use FEniCS in jupyter?
Any hint or help is much appreciated.