Python ImportError: No module named system -
import system module not work in python2.7.3
python 2.7.3 (default, mar 13 2014, 11:03:55)
[gcc 4.7.2] on linux2 type "help", "copyright", "credits" or "license" more information. >>> import system traceback (most recent call last): file "<stdin>", line 1, in <module> importerror: no module named system
if wish sys module, try:
import sys
if you're looking system call, try:
import os.system
Comments
Post a Comment