1
from scipy.spacial.distance import squareform, pdist, cdist

it says 'could not be resolved'. I am using python for a boids program.

Jeremi
  • 153
  • 1
  • 1
  • 7

1 Answers1

1

After some searching, I found out that scipy.spatial.distance is the correct spelling of the Module. Did you try import that?

Niklas
  • 436
  • 1
  • 4
  • 16