我试着从GitHub安装一些东西,但我总是得到这个错误。有什么方法可以解决这个问题吗?非常感谢!
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.7/bin/pyinstalive", line 11, in <module>
load_entry_point('pyinstalive==3.1.6', 'console_scripts', 'pyinstalive')()
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyinstalive/startup.py", line 321, in run
pil.ig_api = auth.authenticate(username=pil.ig_user, password=pil.ig_pass)
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyinstalive/auth.py", line 92, in authenticate
json.loads(e.error_response).get("error_title", e.error_response)))
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/__init__.py", line 348, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/decoder.py", line 337, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/json/decoder.py", line 355, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)发布于 2020-03-21 15:44:17
这似乎是pSMAC中的一个错误,不同的多任务作业试图访问一个文件,而另一个进程锁定了同一个文件。参见AutoML的issue 591。
https://stackoverflow.com/questions/57215584
复制相似问题