0

I'm using a python script within ROS. Ros uses python 2.7 and the version of scipy that I'm using is 0.19.1. The following error is reported:

from scipy.spatial.transform import Rotation as R ImportError: No module named transform

Didon
  • 383
  • 2
  • 4
  • 13

2 Answers2

3

Try upgrading scipy to version 1.2.0:

pip install scipy==1.2.0
Daniel B.
  • 659
  • 1
  • 9
  • 17
-2

Working on python 3.7.3. Make sure it's available on 2.7

Cheen
  • 86
  • 3
  • 12