Sembra installare senza errori utilizzando l'EXE (nel mio caso pywin32-219.win-amd64-py3.5.exe) tuttavia quando si esegue l'interprete python e si prova a "import Win32API" ottengo il seguente errore:Impossibile ottenere pywin32-219 per funzionare con python 3.5
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed: The specified module could not be found.
Se scarico il file zip e provo a fare funzionare "setup3.py install" ottengo il seguente output:
Converting...
Executing...
Building pywin32 3.5.219.0
Traceback (most recent call last):
File "setup3.py", line 16, in <module>
exec(str(got))
File "<string>", line 1929, in <module>
File "<string>", line 587, in __init__
File "C:\Python35\lib\ntpath.py", line 113, in join
genericpath._check_arg_types('join', path, *paths)
File "C:\Python35\lib\genericpath.py", line 143, in _check_arg_types
(funcname, s.__class__.__name__)) from None
TypeError: join() argument must be str or bytes, not 'NoneType'
ho provato un paio di cose ma non riesco a farlo funzionare.
Qualcuno ha potuto installare pywin32 e funzionare correttamente con python 3.5?