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