Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Syntax error while running "yolk -l"

I have installed yolk 0.4.3 using pip. But when I tried yolk -l to display all installed packages, it showed a syntax error

File "C:\Python32\Lib\site-packages\yolk\cli.py" line 262
print "%s %s (%s)" % (project name,dis,version,
                 ^
syntax error :invalid syntax
like image 263
Ashish Avatar asked Sep 23 '13 19:09

Ashish


1 Answers

It seems you're using the package yolk (which only works Python 2). To install yolk for Python 3 use the yolk3k package:

pip install yolk3k
like image 88
Dan Avatar answered Sep 30 '22 14:09

Dan