Problem with Python SciPy module [duplicate]
By John Campbell •
I am trying to run a Python program, and when I run python ldbb.py, I get the following error:
root@dell-OptiPlex-3050:~/refractiveindex.info-scripts-master/ldbb# python ldbb.py
Traceback (most recent call last): File "ldbb.py", line 29, in <module> from scipy import constants
ImportError: No module named scipyWhat should I do now?
41 Answer
Probably you didn't install scipy..
sudo apt-get install python-pip then
pip install scipyshould solve your problem.