Heim > Fragen und Antworten > Hauptteil
Win7 64-bit
Python 3.5.3
Ich habe das entdeckt, als ich UEditor in Kombination mit dem Qiniu SDK zum Hochladen von Bildern verwendet habe
Traceback (most recent call last):
...
File "D:\Python\python34\lib\site-packages\qiniu\zone.py", line 124, in host_cache_file_path
return home + "/.qiniu_pythonsdk_hostscache.json"
TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'
Der Grund dafür ist, dass die Systemumgebungsvariable nicht auf HOME gesetzt ist
def host_cache_file_path(self):
home = os.getenv("HOME")
return home + "/.qiniu_pythonsdk_hostscache.json"
Ich würde gerne fragen, ob dies ein Fehler von Qiniu ist oder ob es nicht ausreichend mit Python 3.x kompatibel ist?