-
Notifications
You must be signed in to change notification settings - Fork 211
Description
Hi,
I tried to install pyjs by the following command :
sudo pip install git+https://github.com/pyjs/pyjs.git#egg=pyjs
And now when I try to run :
pyjsbuild test.py
I got a syntax error :
Traceback (most recent call last): File "/usr/local/bin/pyjsbuild", line 11, in <module> load_entry_point('pyjs==0.8.2', 'console_scripts', 'pyjsbuild')() File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 561, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2631, in load_entry_point return ep.load() File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2291, in load return self.resolve() File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2297, in resolve module = __import__(self.module_name, fromlist=['__name__'], level=0) File "/usr/local/lib/python3.5/dist-packages/pyjs/browser.py", line 8, in <module> from pyjs import linker File "/usr/local/lib/python3.5/dist-packages/pyjs/linker.py", line 267 except translator.TranslationError, e: ^ SyntaxError: invalid syntax