I could not import modules like os,glob and other standard modules in python..
The only module i can import is sys...
import site' failed; use -v for traceback
is the error code i get if i open the editor...
>>>import os
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named os\
>>>
what should i include do to get my modules import?
The only module i can import is sys...
import site' failed; use -v for traceback
is the error code i get if i open the editor...
>>>import os
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named os\
>>>
what should i include do to get my modules import?
Comment