Is there any way to install a special scipy module without the rest of scipy?

I am writing some digital Python code and would like to use some functions from a special module . So far, my code only depends on numpy, which I found very easy to install in various Python environments. On the other hand, installing scipy was usually the result of disappointment. Is there a way to get only a special module?

Notice, now I see that there is a downloadable scipy package for the Mac, but this has not always been the case.

+3
source share
3 answers

. cd-ing "special" "python setup.py install". special scipy.special.

+2

scipy, , . , , , scipy .

0

Numpy, , -, PYTHONPATH , . . Numpy, , ...

0

Source: https://habr.com/ru/post/1702189/


All Articles