Hi. I just saw the blog post regarding Spring Python 1.2 RC1 and thought I would take a look at one of the sample applications. Admittedly I don't have any Python background at all, just wanted to take a look at how a Python web app works (I have experience with Spring/Java webapps).
Anyway... I managed to download Python 2.6 (Windows), and installed the prerequisite modules (cherypy, paste, pyro, setuptools). However, I get the following error when trying to run this command "python configure.py":
After a bit of reading, I found out that the termios module seems to be only available on Unix - is there anyway to get petclinic working on windows?Code:c:\Python26\Lib\site-packages\petclinic>python configure.py Traceback (most recent call last): File "configure.py", line 18, in <module> import termios ImportError: No module named termios


Reply With Quote