+ 1
why can not I import scipy in python code
Traceback (most recent call last): File "..\Playground\", line 6, in <module> from scipy import linalg ImportError: No module named 'scipy'
3 ответов
+ 1
FYI, I wrote the code in the code playground.
+ 1
Because scipy is an external package, and is not in the standard library.
You have to use pip or something to install it, which I don't think is possible here, even with some advanced code in C or something.
+ 1
Thanks