pythonweb.py

How to install webpy framework on Windows


I have python 3.3.2 installed on windows 8 x64.

I am trying to install webpy framework. What I tried:

Downloaded latest webpy. Extracted to python directroy. in command promp I cd {python_dir/webpy_sub_dir}, then python setup.py install

I get this error:

Traceback ....
  File "setup.py", line 6 ....
  from web import __version__
  File ........ /web/__init__.py, line 14 in <module>
  import utils,db,net,wcgi,http,webapi, .........
ImportError: No module named 'utils'

What could be the problem? I could not find any tutorials relating to windows installs.

P.S. I realise this is borderline "not a programming question" but looking at other stack forums there isn't a better place for this(IMO).


Solution

  • In the end the problem was that webpy is not compatible with python 3.x. I went with a similar alternative - bottle py.