philogb / jit

The JavaScript InfoVis Toolkit provides tools for creating Interactive Data Visualizations for the Web
http://thejit.org
Other
1.51k stars 297 forks source link

ImportError: No module named web #163

Open DSoa opened 11 years ago

DSoa commented 11 years ago

I'm having trouble with the commands to build the examples on Windows. I'm using Python 2.7 on Windows 7.

C:\jit>python make.py build
Traceback (most recent call last):
  File "make.py", line 6, in <module>
    from serve import render
  File "C:\jit\serve.py", line 1, in <module>
    import web
ImportError: No module named web

I tried adding c:\jit to my PATH env var, and to PYTHONPATH, to no avail.

Can someone please tell me how to get this to run?

Thanks.

clairian commented 10 years ago

Hi - did you ever get to the bottom of this issue? i'm trying to run Jit for the first time and am facing the same error.

Thanks

DSoa commented 10 years ago

no

k3d3 commented 9 years ago

It's because the web directory is a symbolic link to webpy/web. Windows tends not to support symbolic links with git, and so the web directory appears broken.

As a workaround, just copy webpy/web to web, and it should work again.