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.
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.
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.