-
Notifications
You must be signed in to change notification settings - Fork 3
Installation issue #5
Description
Hi, I'm trying to install PyFRAP and I'm getting the following error after running pip install pyfrp:
Collecting pyfrp
Using cached pyfrp-1.1.13.tar.gz (7.4 MB)
Preparing metadata (setup.py) ... error
error: subprocess-exited-with-error
× python setup.py egg_info did not run successfully.
│ exit code: 1
╰─> [7 lines of output]
Traceback (most recent call last):
File "", line 2, in
File "", line 34, in
File "/private/var/folders/ms/knsq1kqj0cbgqnbmt1rng0yw0000gr/T/pip-install-b_vlatkz/pyfrp_2568669143e8485fb438c1720deb7192/setup.py", line 193
mode=0777
^
SyntaxError: leading zeros in decimal integer literals are not permitted; use an 0o prefix for octal integers
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
Does this have to do with the mode=0o777 line (194)? Should it be simply mode=0777?
Thanks!