Installing sunode in Google Colaboratory

I am trying to install sunode in Google Colaboratory. The package sunode gets installed by the following code after installing conda:

! wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh
! chmod +x Miniconda3-py37_4.8.2-Linux-x86_64.sh
! bash ./Miniconda3-py37_4.8.2-Linux-x86_64.sh -b -f -p /usr/local
import sys
sys.path.append(’/usr/local/lib/python3.7/site-packages/’)
!conda install --channel conda-forge sunode --yes

However, I am unable to import sunode:

import sympy
from sympy import *
import sunode

The following error message appears:

/usr/local/lib/python3.7/site-packages/sunode/symode/lambdify.py in ()
ModuleNotFoundError: No module named ‘sympy.printing.numpy’

In the file lambdify.py, the following line of code seems to be the problem:

from sympy.printing.numpy import SciPyPrinter

Am I doing the installation wrong ? Can someone please advise on how to install/import sunode in Google Colaboratory ?