Try installing mshr and ipython from the conda-forge channel as well:
conda install -c conda-forge fenics mshr ipython
A better approach might be to create a separate environment like this:
conda create -n fenicsproject -c conda-forge python=3.6 fenics mshr ipython
You can then activate this environment by running:
source activate fenicsproject