Unable to install scipy on Jetson TX2

I tried installing scipy library on my Jetson TX2 using
apt-get install python-scipy
and
pip3 install scipy

Both methods failed with unmet dependency issues of broken packages.

Please give quick suggestions.

Did you try on J4.2.1?
I have no problem to install it with r32.2

nvidia@nvidia-desktop:~$ sudo apt-get install python-scipy
Reading package lists… Done
Building dependency tree
Reading state information… Done
python-scipy is already the newest version (0.19.1-2ubuntu1).
The following packages were automatically installed and are no longer required:

sudo pip3 install --upgrade scipy

this did the trick, the issue is now closed.

This worked for me on Jetson TX2.

sudo apt-get install libatlas-base-dev gfortran
sudo pip3 install scipy
1 Like

Thanks @rohit167. Installing libatlas-base-dev and gfortran did the trick.

1 Like