pip.exe, virtualenv.exe,requests für Python 2.7 installieren (Windows 7, 64-Bit)

Hallo zusammen,

ich wollte requests Modul für Python 2.7 unter Windows 7 installieren, aber das hat nicht so geklappt, wie ich es mir vorstellte. Hier ist eine kleine Anleitung dazu.

Mit Hilfe von pip (Pip Installs Python) kann man ohne Probleme Module für Python installieren. Dazu geht man folgender Maßen vor:

1. distribute herunterladen
distribute_setup.py

2. distribute installieren
Dazu einen Terminal öffnen und zu dem Pfad von python.exe wechseln
python.exe C:\Downloads\distribute_setup.py

3. get pip herunterladen
https://raw.github.com/pypa/pip/master/contrib/get-pip.py

4. get pip installieren
python.exe C:\Downloads\get-pip.py

5. Virtualenv installieren
Mit Virtualenv können wir verschiedene virtuelle Umgebungen erstellen und mit verschiedenen Module für verschiedene Python Versionen arbeiten.
C:\Python27\Scripts\pip.exe install virtualenv

6. Virtualenv starten
C:\Python27\Scripts\virtualenv.exe env1

7. Virtualenv aktivieren
env1\Scripts\activate

8. Requests installieren
C:\Python27\Scripts\pip.exe install requests

9. Überprüfen, ob requests installiert wurde. Dazu python starten und requests importieren.
C:\Python27>python.exe Python 2.7.4 (default, Apr 6 2013, 19:55:15) [MSC v.1500 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import requests >>>

Da es keine Fehlermeldung gibt wurde requests erfolgreich installiert.

Neuen Kommentar schreiben

CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.

Suche

Neueste Kommentare

  • 4 weeks ago
    Transaction isolation level REPEATABLE-READ The recommended level for Drupal is "READ COMMITTED". (Drupal Status Report)

     Edit "/etc/my.cnf" ( under [mysqld] ):

    transaction_isolation="READ-COMMITTED"

    Restart MariaDB / MySQL:

  • 1 month ago
    Wget - Eine Webseite rekursive downloaden

    wget -U 'Mozilla/MyUserAgent' -P MyTempDir123 --wait=0.2 --random-wait -nd -r -x -l 4 -e robots=off --reject

  • 1 month ago
    Wget - Eine Webseite rekursive downloaden

    wget -U 'Mozilla/MyUserAgent2024' -P MyOutPutDirectory --wait=1 --random-wait -nd -r -l 2 -e robots=off --reject

  • 2 months 1 week ago
    CPU benchmarking with sysbench (single-threaded/all cores)

     

    # sysbench --threads="$(nproc)" cpu run

  • 2 months 1 week ago
    CPU benchmarking with sysbench (single-threaded/all cores)

    # sysbench --threads="$(nproc)" cpu run

  • 2 months 1 week ago
    Linux Autovervollständigung - bash autocomplete
    source ~/.bashrc

    Diese Lösung wird empfohlen aber hat bei mir nicht funktioniert.

    Welche Alternative gibt es?

  • 2 months 1 week ago
    PHP-CLI auf PHP8.2 umstellen (für Composer, Drush etc)

    ln -snf /opt/plesk/php/8.3/bin/php /etc/alternatives/php

  • 2 months 1 week ago
    Drush Update failed (require php >=8.2)

    In composer.json, update: 

     

  • 2 months 1 week ago
    Drupal: Anmeldung fehlgeschlagen Es hat mehr als 5 fehlerhafte Anmeldeversuche für dieses Benutzerkonto gegeben. Es ist vorübergehend gesperrt.
    drush sqlq "DELETE FROM flood"
  • 2 months 1 week ago
    Drupal SMTP + Gmail funktioniert nicht mehr (Passwort ist richtig); was ist die Lösung?