I have been trying to use some code which is uses openmesh and igl libraries.
Unfortunately, the only way to install igl I found was via conda into its Python 3.9 environment (conda install -c conda-forge igl). Openmesh on the other hand I could only install via outdated pip 20.x into Python 2.7 (pip install openmesh).
How could I use code, which necessitates both libraries? Is there an easy way to import the methods from one of the two libraries into either Python 2.7 or 3.9 environment?