maneira fácil de instalar o Python no Windows

0

A maneira padrão de instalar o Python no Windows parece ser executar o executável e depois mexer com as variáveis ambientais. Por exemplo, veja aqui ou aqui .

As pessoas com quem luto seriam intimidadas tendo que modificar suas variáveis ambientais. Então, como alguém pode instalar o Python no Windows e executar scripts Python sem precisar mexê-los?

Talvez um instalador que defina as variáveis ambientais ou um script em lote que use os caminhos completos?

    
por hoju 21.01.2011 / 03:01

1 resposta

1

No Python 3.3, há uma nova opção para adicionar automaticamente o Python a% variável de ambientePATH.

Besides using the automatically created start menu entry for the Python interpreter, you might want to start Python in the command prompt. As of Python 3.3, the installer has an option to set that up for you.

At the “Customize Python 3.3” screen, an option called “Add python.exe to search path” can be enabled to have the installer place your installation into the %PATH%. This allows you to type python to run the interpreter. Thus, you can also execute your scripts with command line options, see Command line documentation.

No entanto, o instalador do Python no Windows, por padrão, associa arquivos Python ao interpretador Python, para que os usuários possam executar scripts Python apenas clicando no script Python ou em um link para ele.

    
por 24.10.2012 / 21:32