You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
than indeed works flawlessly - I am using Python 3.12.
Perhaps this conda install command could be added to the README, since it took me a while to find cminpack; a minpack conda web search yields r-minpack.lm and not cminpack.
I am not sure if conda install conda-forge::r-minpack.lm + the pip install command would also provide the Python bindings.
I guess not, but I did not try.
The text was updated successfully, but these errors were encountered:
python -c "import minpack"
Traceback (most recent call last):
File "<string>", line 1, in <module>
File ".../anaconda3/envs/py312/lib/python3.12/site-packages/minpack/__init__.py", line 6, in <module>
from .library import (
File ".../anaconda3/envs/py312/lib/python3.12/site-packages/minpack/library.py", line 21, in <module>
from ._libminpack import ffi, lib
ModuleNotFoundError: No module named 'minpack._libminpack'
Wrt the Minpack Python bindings, the README says
That conda install can be as easy as
conda install -c conda-forge cminpack
. The pip install commandthan indeed works flawlessly - I am using Python 3.12.
Perhaps this conda install command could be added to the README, since it took me a while to find
cminpack
; aminpack conda
web search yields r-minpack.lm and notcminpack
.I am not sure if
conda install conda-forge::r-minpack.lm
+ the pip install command would also provide the Python bindings.I guess not, but I did not try.
The text was updated successfully, but these errors were encountered: