pymeep
按照https://meep.readthedocs.io/en/latest/Installation/安装
用过的:
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p <desired_prefix>
export PATH=<desired_prefix>/bin:$PATH
和
conda create -n mp -c conda-forge pymeep
conda activate mp
但是,python -c 'import meep'
结果ModuleNotFoundError: No module named 'pymeep'
. 互动python
也有同样的问题。
我列出了使用的已安装软件包conda list
,它肯定存在于列表中。
我如何判断这是使用pymeep
或安装的问题或问题conda
???