Python 3.6 não roda no Windows 10

-1

Usando o Windows 10.

Primeiro, desinstalei todas as versões existentes do Python 3 ou do Python 2.0

link

Então eu corro o programa acima, o Windows parece instalá-lo OK (eu escolho "Adicionar o Python 3.6 ao caminho"). Eu cliquei em "Instalar agora".

Eu corro o Windows Powershell.

Eu digito python3 e nada acontece.

PS C:\Users\d> python
python : The term 'python' is not recognized as the name of a cmdlet, function, script file, or operable progr
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ python
+ ~~~~~~
    + CategoryInfo          : ObjectNotFound: (python:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\d> python3
python3 : The term 'python3' is not recognized as the name of a cmdlet, function, script file, or operable pro
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ python3
+ ~~~~~~~
    + CategoryInfo          : ObjectNotFound: (python3:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\d>

Alguém pode sugerir o que posso fazer para instalar o Python 3.6?

    
por Duke Dougal 06.01.2017 / 02:42

1 resposta

3

Para aqueles que seguem, para fazer o Python funcionar no Windows, não foi suficiente selecionar as opções padrão durante a instalação.

Você DEVE selecionar customizado - Eu não sei exatamente qual opção eu selecionei em custom mas instalei para c: \ python36 e instalei para todos os usuários e mandei definir o caminho e depois disso funcionou.

    
por 06.01.2017 / 21:53