Conda install gmsh does not install Python API
Hello,
When I run:
$ conda create -n gmsh_env -c conda-forge gmsh
$ python -c "import gmsh"
to install gmsh in my conda environment, I get the error:
ModuleNotFoundError: No module named 'gmsh'
However, when I run:
$ conda create -n gmsh_env
$ conda activate gmsh_env
$ pip install gmsh
The Python API is installed. Is this intended?