Ho installato ArcGIS Pro 1.4 e non ha registrato il Python 3.5.2 installato che mi ha impedito di installare alcun componente aggiuntivo. Ho risolto questo utilizzando il "reg" il comando in una sessione amministratore PowerShell per creare manualmente e popolare le necessarie chiavi di registro/valori (dove Python è installato in C: \ Python35):
reg add "HKLM\Software\Python\PythonCore\3.5\Help\Main Python Documentation" /reg:64 /ve /t REG_SZ /d "C:\Python35\Doc\Python352.chm"
reg add "HKLM\Software\Python\PythonCore\3.5\InstallPath" /reg:64 /ve /t REG_SZ /d "C:\Python35\"
reg add "HKLM\Software\Python\PythonCore\3.5\InstallPath\InstallGroup" /reg:64 /ve /t REG_SZ /d "Python 3.5"
reg add "HKLM\Software\Python\PythonCore\3.5\PythonPath" /reg:64 /ve /t REG_SZ /d "C:\Python35\Lib;C:\Python35\DLLs;C:\Python35\Lib\lib-tk"
Trovo che questo sia più facile che utilizzando l'editor del Registro di sistema, ma questa è solo una preferenza personale.
Gli stessi comandi possono essere eseguiti nella sessione CMD.EXE se si preferisce; assicurati di eseguirlo come amministratore.
fonte
2017-02-08 21:55:14
vedere anche il PEP rilevanti 514 https://www.python.org/dev/peps/pep-0514/ – chip
Questo anche risolto il problema per ReportLab – dav