Incomplete scipy installation
The SciPy installation on Paraview 5.10.1 seems to be incomplete. When I try to load scipy's solve_ivp, I receive the following error message.
from scipy.integrate import solve_ivp
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/Applications/ParaView-5.10.1.app/Contents/Python/scipy/integrate/__init__.py", line 94, in <module>
from ._bvp import solve_bvp
File "/Applications/ParaView-5.10.1.app/Contents/Python/scipy/integrate/_bvp.py", line 8, in <module>
from scipy.sparse.linalg import splu
File "/Applications/ParaView-5.10.1.app/Contents/Python/scipy/sparse/linalg/__init__.py", line 114, in <module>
from .eigen import *
File "/Applications/ParaView-5.10.1.app/Contents/Python/scipy/sparse/linalg/eigen/__init__.py", line 9, in <module>
from .arpack import *
File "/Applications/ParaView-5.10.1.app/Contents/Python/scipy/sparse/linalg/eigen/arpack/__init__.py", line 20, in <module>
from .arpack import *
ModuleNotFoundError: No module named 'scipy.sparse.linalg.eigen.arpack.arpack'
I get the same error on Paraview 5.9.1. But I am able to successfully import solve_ivp on my Anaconda python installation from the command line.
Here is the information from my Paraview installation on an Intel Mac, MacOS 12.5.1
Client Information:
Version: 5.10.1
VTK Version: 9.0.20210922
Qt Version: 5.15.2
vtkIdType size: 64bits
Embedded Python: On
Python Library Path: /Applications/ParaView-5.10.1.app/Contents/Libraries/lib/python3.9
Python Library Version: 3.9.5 (default, Mar 14 2022, 15:46:44) [Clang 12.0.0 (clang-1200.0.32.29)]
Python Numpy Support: On
Python Numpy Path: /Applications/ParaView-5.10.1.app/Contents/Python/numpy
Python Numpy Version: 1.21.1
Python Matplotlib Support: On
Python Matplotlib Path: /Applications/ParaView-5.10.1.app/Contents/Python/matplotlib
Python Matplotlib Version: 3.2.1
Python Testing: Off
MPI Enabled: On
ParaView Build ID: superbuild 6dd132601dbb2a9ebdc0d31825989f5b92595b76 (!969)
Disable Registry: Off
Test Directory:
Data Directory:
SMP Backend: TBB
SMP Max Number of Threads: 8
OpenGL Vendor: ATI Technologies Inc.
OpenGL Version: 4.1 ATI-4.8.101
OpenGL Renderer: AMD Radeon Pro 560 OpenGL Engine
Connection Information:
Remote Connection: No
print(sys.path)
['/Applications/ParaView-5.10.1.app/Contents/Python', '/Applications/ParaView-5.10.1.app/Contents/Libraries/lib/python39.zip', '/Applications/ParaView-5.10.1.app/Contents/Libraries/lib/python3.9', '/opt/glr/paraview/paraview-ci/build/install/lib/lib-dynload']