Hello, forum. I was practicing some coding in 2.8 and got into following issue. When trying to import scipy console message tells me there’s no scipy module. Okay, going into blender’ python directory and installing it using python3.7m -m pip install scipy
. And now when I try import scipy
from within blender it breaks with the following error:
>>> import scipy
Traceback (most recent call last):
File "<blender_console>", line 1, in <module>
File "/home/hiisi/blender/blender28/2.80/python/lib/python3.7/site-packages/scipy/__init__.py", line 62, in <module>
from numpy import show_config as show_numpy_config
ImportError: cannot import name 'show_config' from 'numpy' (unknown location)
Multiple attempts to reinstall either scipy or numpy didn’t help. How do I fix that?