Error: "no module named xxxx"

0

I have Python installed in my pcs (Windows 7 and 8) but I can not execute any script that contains import .

The error message always appears:

  

import error: no module named xxxx.

    
asked by anonymous 12.11.2015 / 11:59

1 answer

2

You are trying to import modules that do not come "embedded" when you install Python. This means that you will have to install them manually.

You can do this by pip

pip install numpy

Or whatever you prefer.

    
12.11.2015 / 12:35