This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients dstufft, eric.araujo, tbpassin, vstinner
Date 2020-01-08.15:55:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1578498940.76.0.945133129423.issue39260@roundup.psfhosted.org>
In-reply-to
Content
find_executable() rely on the PATH environment variable:

def find_executable(executable, path=None):
    """Tries to find 'executable' in the directories listed in 'path'.

    A string listing directories separated by 'os.pathsep'; defaults to
    os.environ['PATH'].  Returns the complete filename or None if not found.
    """

You may add manually %ProgramFiles% and %ProgramFiles(x86)% to your PATH if they aren't already there.
History
Date User Action Args
2020-01-08 15:55:40vstinnersetrecipients: + vstinner, eric.araujo, dstufft, tbpassin
2020-01-08 15:55:40vstinnersetmessageid: <1578498940.76.0.945133129423.issue39260@roundup.psfhosted.org>
2020-01-08 15:55:40vstinnerlinkissue39260 messages
2020-01-08 15:55:40vstinnercreate