You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo python setup.py build
File "/home/ap/Pyrit/setup.py", line 56
print "Failed to build; Compiling without AES-NI"
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
how to solve this
I've the same problem, i ready did python2 setup.py build and don't work
The text was updated successfully, but these errors were encountered:
You must open the file setup.py in a text editor. I use nano with the -l option so that I can see the lines. Hold ctrl down while you press / and type 56 then press enter. Now just place a parenthesis around "Failed.....AES-NI" like so
print("Failed to build; Compiling without AES-NI")
You're going to have to do this in a couple of places, there are also lines with multiple exception errors that need parenthesis.
sudo python setup.py build
File "/home/ap/Pyrit/setup.py", line 56
print "Failed to build; Compiling without AES-NI"
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
how to solve this
I've the same problem, i ready did python2 setup.py build and don't work
The text was updated successfully, but these errors were encountered: