maroba / findiff

Python package for numerical derivatives and partial differential equations in any number of dimensions.
MIT License
412 stars 59 forks source link

ModuleNotFoundError: No module named 'findiff' #39

Closed secco88 closed 7 months ago

secco88 commented 3 years ago

c:...\trendln__init__.py in get_extrema(h, extmethod, accuracy) 434 elif extmethod == METHOD_NUMDIFF: 435 #pip install findiff --> 436 from findiff import FinDiff 437 dx = 1 #1 day interval 438 d_dx = FinDiff(0, dx, 1, acc=accuracy) #acc=3 #for 5-point stencil, currenly uses +/-1 day only

ModuleNotFoundError: No module named 'findiff'

package findiff is correctly installed, what can I do?

maroba commented 3 years ago

Are you sure that you have installed findiff to the correct environment?

Did you install findiff using pip in a virtual environment or systemwide? Or did you install using setup.py based on the code?

secco88 commented 3 years ago

I have installed it both in venv and in the system but the problem persists