Does it work in windows 10?
See original GitHub issueI`ve tried the code, but it gives is me this error when starting it: c:\Python3\osint\EagleEye>py -3 eagle-eye.py Traceback (most recent call last): File “eagle-eye.py”, line 9, in <module> import utils.config as cfg File “c:\Python3\osint\EagleEye\utils\config.py”, line 8, in <module> cfg = json.load(json_data) File “C:\Users.…\AppData\Local\Programs\Python\Python36\lib\json_init_.py”, line 299, in load parse_constant=parse_constant, object_pairs_hook=object_pairs_hook, **kw) File “C:\Users.…\AppData\Local\Programs\Python\Python36\lib\json_init_.py”, line 354, in loads return _default_decoder.decode(s) File “C:\Users.…\AppData\Local\Programs\Python\Python36\lib\json\decoder.py”, line 339, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File “C:\Users.…\AppData\Local\Programs\Python\Python36\lib\json\decoder.py”, line 355, in raw_decode obj, end = self.scan_once(s, idx) json.decoder.JSONDecodeError: Invalid \escape: line 8 column 20 (char 154)
Any idea if I can solve it? Thanks!
Issue Analytics
- State:
- Created 6 years ago
- Comments:25 (13 by maintainers)
I had multiple versions of python installed, each one with own selenium, webdriver and geckodriver using. Finally I found that the first geckodriver launching was an older version for python 2.7… I
ve made updates to the latest 0.20 version for all python versions and everything works fine now. Dlib can be installed on windows , even it takes some time and patience. I
ll check again in next days which solution really worked because I`ve tried many in a whole day 😃Thats because a Unix path uses forward slashes (‘/’) but windows uses “\” so it cannot get the filename by splitting via ‘/’ change that to
console.subtask('Loading {0}'.format(p_str.split('\\')[1]))
its just a print by the way so you could even comment that out.
I hope that you dont pull the latest changes since it completly break windows compatibility because of a unix shell script. i try to add a powershell script.