Issue with bokeh import - python

I installed bokeh using pip and I am trying to test it but its giving me a traceback error to
File "/usr/lib/python2.6/site-packages/bokeh/properties.py", line 611
return { self.keys_type.from_json(key, models): self.values_type.from_json(value, models) for key, value in iteritems(json) }
^
SyntaxError: invalid syntax
Can anyone help?

Bokeh does not support Python 2.6.

Related

syntax error in every python scripts SyntaxError: invalid syntax

File "account_creator.py", line 63
username = f"{first_name}_{last_name}{random.randint(1000, 9999)}"
^
SyntaxError: invalid syntax
every script i run gives this error
You need to use a newer version of Python. Install a version of python 3.6 or newer, then your problem should be solved!

zeppelin_ipyspark.py at apache zeppelin get SyntaxError: invalid syntax

when i running code with pyspark in apache zeppelin 0.8.1 , i get error like
java.lang.NullPointerException
at org.apache.thrift.transport.TSocket.open(TSocket.java:170)
at org.apache.zeppelin.interpreter.remote.ClientFactory.create(ClientFactory.java:51)
...
so i open all file in my folder zeppelin
and i try to running file zeppelin_ipyspark.py at D:\zeppelin-0.8.1-bin-all\interpreter\spark\python with cmd
and i get error
D:\zeppelin-0.8.1-bin-all\interpreter\spark\python>zeppelin_ipyspark.py
File "D:\zeppelin-0.8.1-bin-all\interpreter\spark\python\zeppelin_ipyspark.py", line 29
port=${JVM_GATEWAY_PORT}, auth_token=gateway_secret, auto_convert=True))
^
SyntaxError: invalid syntax
so can you help me?
#LSS zeppelin_ipyspark.py is not a standalone script.
It is invoked internally from Zeppelin's java code as part of Ipython interpreter, where the python script is processed to replace these strings(like JVM_GATEWAY_PORT etc) with actual values.
You can check the code references: 1, 2

Error in django-app-metrics

I am using django-app-metrics for recording some metrics in my webapp. I using python3 and i installed app-metrics using following command - pip3 install django-app-metrics.
But when I am importing from app_metrics.utils import create_metric it is giving me this error :
File "/usr/local/lib/python3.6/site-packages/app_metrics/utils.py", line 92
except Exception, e
^
SyntaxError: invalid syntax
Can someone tell me what i am doing wrong ?

emacs python jedi error

I am trying to setup my GNU Emacs 24.3.1 for python development following the instructions here:
https://www.youtube.com/watch?v=0cZ7szFuz18
The installation gave a few warnings but was successful. Then I open a new buffer with file 01.py and try to use the auto-complete:
import os
os.
But get this error:
deferred error : (error Server may raise an error : File "/home/avilella/.emacs.d/elpa/jedi-0.1.2/jediepcserver.py", line 71
return _WHITESPACES_RE.sub(' ', desc) if desc and desc != 'None' else ''
^
SyntaxError: invalid syntax
)
Any ideas what is going on?
emacs is using an old version of python. The code that gets the error is python 2.6+ syntax I believe.

py2neo error in rest.py :: httplib.HTTPException as err:

I have been using py2neo on my local machine and it's been working great. However, when I installed it out on my server I received an error before it said Successfully Installed.
This was the error:
File "/usr/lib/python2.5/site-packages/py2neo/cypher.py", line 112
except rest.BadRequest as err:
^
SyntaxError: invalid syntax
File "/usr/lib/python2.5/site-packages/py2neo/rest.py", line 345
except httplib.HTTPException as err:
^
SyntaxError: invalid syntax
Sure enough when I try and use py2neo out on my server I get an error:
invalid syntax (rest.py, line 345)
Locally I'm running python 2.7.2 where as on the server I'm running 2.5.2 Is this a known issue with the python versions?
As mentioned on the website, py2neo is only compatible with Python 2.6 and upwards. Sorry!

Categories

Resources