IronPython cannot import module os
问题 So I have a basic ZIPPED IronPython (2.6 or 2.6.1) that I just unzip, start ipy.exe, type "import os" and hit enter. The following output happens: Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named os It doesn't work even if I import clr first. What's it to be done ? I've googled this issue but no relevant answer. The closest idea was this (which didn't work): import clr clr.AddReference("IronPython") clr.AddReference("IronPython.Modules")