when I use import os in the python script in PAD I get this error ,
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named os
If I want to import os package I need to include the path(s) of folder(s) where external Python modules lie else it throws an above error .
To avoid this above error I need to install Python 2.7 in my local machine(laptop) and provide the path of Lib folder [C:\Python27\Lib] then the python scripts executes.
So Im installing python 2.7 to import module , so is this the only way or are there any alternatives ???