Como instalar o Python 2.7 com bibliotecas Unix no Cygwin

4

Como eu instalo o Python 2.7 com bibliotecas Unix no Cygwin?

Obviamente, obter o Python 2.6 é fácil - basta instalar o pacote Cygwin com setup.exe .

Instalar a versão para Windows do Python 2.7 também foi fácil, mas não consegui acessar os módulos Unix .

Então eu tenho tentado instalar o Python a partir do código-fonte, mas parece que toda vez que eu corrijo um Make

Eu sinto que instalar o Linux seria o caminho mais fácil ...

Eu tenho tentado por cerca de uma semana para que isso funcione.

    
por JIStone 26.02.2012 / 17:35

1 resposta

5

Talvez seguir este guia seja o suficiente para o que você precisa: link

  1. Download the desired version from http://www.python.org/ftp/python/. Here are the direct links: Python-2.7.1.tar.bz2, Python-2.7.2.tar.bz2, or Python-2.7.3.tar.bz2.

  2. Download the matching patch Python-2.7.1-cygwin.patch.bz2, Python-2.7.2-cygwin.patch.bz2, or Python-2.7.3-cygwin.patch.bz2.

  3. Unpack the sources, for example for 2.7.3:
    tar -jxvf Python-2.7.3.tar.bz2

  4. Patch the sources, for example for 2.7.3:
    bzcat Python-2.7.3-cygwin.patch.bz2 | patch -p0

  5. Configure the build. For example, you may want to install into /usr/local:
    cd Python-2.7.3
    ./configure --prefix=/usr/local

  6. Compile the configured sources:
    make

  7. Install the compiled build:
    make install

    
por 29.06.2012 / 18:50