Connaissances Informatiques >> programmation >> Programmation Python >> Content
  Derniers articles
  • Comment synchroniser les files d'att…
  • Parcourir un fichier en Python 
  • Comment faire de tableau 3D en Pytho…
  • Comment faire pour supprimer plusieu…
  • Comment le traitement par lots de bo…
  • Comment obtenir coordonnées du curs…
  • Comment tenir un compte d'une variab…
  • Comment faire pour convertir CSV au …
  • Comment faire pour trouver une liste…
  • Comment concevoir un programme pour …
  •   Programmation Python
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Programmation Java

  • Programmation JavaScript

  • PHP /MySQL Programmation

  • programmation Perl

  • Programmation Python

  • Ruby Programming

  • Visual Basics programmation
  •  
    Programmation Python

    Comment installer Python sous Linux

    Prérequis :

    1. Une distribution Linux (par exemple, Ubuntu, CentOS, RHEL)

    2. Privilèges administratifs (accès sudo ou root)

    Étape 1 :Mettre à jour le système

    ```

    sudo apt mise à jour &&sudo apt mise à niveau

    ```

    Étape 2 :Installer les dépendances Python

    ```

    sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev wget

    ```

    Étape 3 :Téléchargez la dernière source Python

    ```

    CD ~

    wget https://www.python.org/ftp/python/[latest_python_version]/Python-[latest_python_version].tar.xz

    ```

    Exemple :Si la dernière version de Python disponible est Python 3.11.0, la commande de téléchargement sera :

    ```

    wget https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tar.xz

    ```

    Étape 4 :Extraire la source Python

    ```

    tar -xvf Python-[dernière_version_python].tar.xz

    ```

    Exemple :

    ```

    tar -xvf Python-3.11.0.tar.xz

    ```

    Étape 5 :Configurer la version Python

    ```

    cd Python-[dernière_version_python]

    ./configure --enable-optimisations

    ```

    Exemple :

    ```

    cdPython-3.11.0

    ./configure --enable-optimisations

    ```

    Étape 6 :Compiler Python

    ```

    sudo faire

    ```

    Étape 7 :Installer Python

    ```

    sudo make install

    ```

    Étape 8 :Vérifier l'installation de Python

    ```

    python3 --version

    ```

    La sortie doit afficher la version de Python que vous avez installée.

    Félicitations ! Vous avez installé avec succès Python sur votre système Linux.

     
    Article précédent:
    Article suivant:
    Articles recommandés
  • Comment faire un tableau vide sur Python 
  • Comment vérifier si un fichier existe , puis supprimez- en Python 
  • Comment faire pour obtenir la longueur d'une liste en Python 
  • Quels sont fait défiler les valeurs en Python 
  • Comment faire une permutation en Python 
  • Comment faire une chaîne en URL dans Django 
  • Comment faire pour utiliser un script Python Twitter 
  • Comment faire pour obtenir le mode d'une liste en Python 
  • Comment déclarer une liste en Python 
  • Comment supprimer toutes les instances d' une classe en Python 
  • Connaissances Informatiques © http://www.ordinateur.cc