I am trying to run numpy in Python 3, using the WinPy distribution. I put #!python3 at the top of the script, because I was told that is something that Winpy has that allows you to make it run in a certain version. If I run the script in the shell(Eclipse) it works fine, but when I try to run it from the console, I get this error:
Traceback (most recent call last):
File "C:\Users\Dax\workspace\Python3\TestofPython3.py", line 9, in <module>
import numpy
ImportError: No module named 'numpy'
If I don't put that at that the top of the script, it runs numpy fine until it gets to 'input()'. It works in the shell with or without #!python3.