I have been trying to install MEEP on my google colab environment but every solution online does not work for me.
The code I have so far is below:
!wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
!chmod +x Miniconda3-latest-Linux-x86_64.sh
!bash ./Miniconda3-latest-Linux-x86_64.sh -b -p /usr/local
!conda install -y -c chogan -c conda-forge pymeep
import sys
sys.path.append('/usr/local/lib/python3.6/site-packages/')
import meep as mp
The problem is that this code gives me this error:
ModuleNotFoundError: No module named 'meep'
I was wondering if anyone had the solution to this