Installation des pilotes Python, Pycharm, Selenium et Web

WBOY
Libérer: 2024-07-18 12:34:48
original
992 Les gens l'ont consulté

Installation of Python, Pycharm, Selenium and Web Drivers

Guide d'installation : Python, PyCharm, Selenium et pilotes Web

Ce guide est destiné à simplifier le processus d'installation de Python, PyCharm et Selenium. J'ai créé ce brouillon pour aider à atténuer les difficultés auxquelles de nombreuses personnes sont confrontées lorsqu'elles recherchent des instructions d'installation complètes. Que ce soit pour la pratique ou le travail, suivre ces étapes garantira une expérience de configuration fluide.

Étape 1 : Installer Python

Fenêtres

  1. Télécharger Python :

    • Allez sur le site officiel de Python.
    • Téléchargez la dernière version de Python.
  2. Exécutez le programme d'installation :

    • Exécutez le programme d'installation téléchargé.
    • Cochez la case "Ajouter Python au PATH".
    • Cliquez sur "Installer maintenant".
    • Cliquez sur "Désactiver MAX PATH LIMIT(255)".

macOS

  1. Télécharger Python :

    • Allez sur le site officiel de Python.
    • Téléchargez la dernière version de Python.
  2. Exécutez le programme d'installation :

    • Ouvrez le fichier .pkg téléchargé.
    • Suivez les instructions d'installation. Bien sûr! Voici les instructions d'installation de Python sur macOS :

Instructions d'installation de Python sur macOS

Étape 1 : Téléchargez Python

  1. Allez sur le site Web officiel de Python :

    • Ouvrez votre navigateur Web et accédez au site Web officiel de Python.
  2. Téléchargez la dernière version :

    • Le site Web devrait détecter automatiquement votre système d'exploitation et suggérer la dernière version pour macOS.
    • Cliquez sur le bouton « Télécharger Python [version] » pour télécharger le programme d'installation.

Étape 2 : Installer Python

  1. Exécutez le programme d'installation :

    • Une fois le téléchargement terminé, localisez le fichier téléchargé, généralement dans votre dossier Téléchargements.
    • Double-cliquez sur le fichier .pkg pour ouvrir le programme d'installation de Python.
  2. Suivez les étapes d'installation :

    • Le programme d'installation ouvrira une nouvelle fenêtre. Cliquez sur "Continuer" pour commencer le processus d'installation.
    • Lisez et acceptez le contrat de licence.
    • Choisissez l'emplacement d'installation. L'emplacement par défaut convient généralement.
    • Cliquez sur "Installer" pour démarrer l'installation.
    • Vous serez peut-être invité à saisir votre mot de passe macOS pour autoriser l'installation. Entrez votre mot de passe et cliquez sur "Installer le logiciel".
  3. Terminez l'installation :

    • Une fois l'installation terminée, cliquez sur "Fermer" pour quitter le programme d'installation.

Étape 3 : Vérifiez l'installation

  1. Terminal ouvert :

    • Vous pouvez trouver Terminal dans Applications > Utilitaires ou en utilisant la recherche Spotlight (Cmd + Espace et tapez "Terminal").
  2. Vérifiez la version de Python :

    • Dans Terminal, tapez la commande suivante et appuyez sur Entrée :
     python3 --version
    
    Copier après la connexion
  • Vous devriez voir la version de Python que vous avez installée. Par exemple :

     Python 3.x.x
    
    Copier après la connexion
  1. Vérifier la version pip :

    • Dans Terminal, tapez la commande suivante et appuyez sur Entrée :
     pip3 --version
    
    Copier après la connexion
  • Vous devriez voir la version de pip installée avec Python. Par exemple :

     pip 21.x.x from /Library/Frameworks/Python.framework/Versions/3.x/lib/python3.x/site-packages/pip (python 3.x)
    
    Copier après la connexion

Étape 4 : configurer les variables d'environnement (facultatif)

  1. Ajouter Python au CHEMIN :

    • Ouvrez le Terminal et entrez la commande suivante pour ouvrir le fichier .bash_profile ou .zshrc dans un éditeur de texte :
     nano ~/.zshrc
    
    Copier après la connexion

    ou

     nano ~/.bash_profile
    
    Copier après la connexion
  2. Modifier le fichier :

    • Ajoutez la ligne suivante au fichier :
     export PATH="/Library/Frameworks/Python.framework/Versions/3.x/bin:$PATH"
    
    Copier après la connexion
  • Enregistrez le fichier en appuyant sur Ctrl + O, puis appuyez sur Entrée. Quittez en appuyant sur Ctrl + X.
  1. Appliquer les modifications :

    • Dans Terminal, exécutez la commande suivante pour appliquer les modifications :
     source ~/.zshrc
    
    Copier après la connexion

    ou

     source ~/.bash_profile
    
    Copier après la connexion

Étape 5 : Installer Virtualenv (facultatif)

  1. Installer virtualenv :

    • Pour créer des environnements Python isolés, vous pouvez utiliser virtualenv. Installez-le en utilisant pip :
     pip3 install virtualenv
    
    Copier après la connexion
  2. Créer un environnement virtuel :

    • Accédez au répertoire de votre projet :
     cd path/to/your/project
    
    Copier après la connexion
  • Créez un environnement virtuel :

     virtualenv venv
    
    Copier après la connexion
  1. Activer l'environnement virtuel :

    • Activate the virtual environment:
     source venv/bin/activate
    
    Copier après la connexion
  • You will see (venv) in your terminal prompt, indicating the virtual environment is active.
  1. Deactivate the Virtual Environment:

    • To deactivate the virtual environment, simply run:
     deactivate
    
    Copier après la connexion

You have now installed Python on your macOS system, set up your environment variables, and optionally installed virtualenv for managing your projects.

Linux

  1. Using APT (Debian/Ubuntu):
   sudo apt update
   sudo apt install python3 python3-pip
Copier après la connexion
  1. Using DNF (Fedora):
   sudo dnf install python3 python3-pip
Copier après la connexion

Step 2: Install PyCharm

  1. Download PyCharm:

    • Go to the JetBrains PyCharm website.
    • Download the Community Edition (free) or Professional Edition (paid).
    • Always remember to Check the System version and download compatible version else, you will able to install but not able open the pycharm software
  2. Run the Installer:

    • Follow the installation instructions provided by JetBrains.
    • Certainly! Here are the installation instructions for PyCharm as provided by JetBrains:

Installation Instructions for PyCharm

Windows

  1. Download PyCharm:

    • Go to the JetBrains PyCharm download page.
    • Download the Community Edition (free) or Professional Edition (paid).
  2. Run the Installer:

    • Double-click the downloaded .exe file to launch the installer.
    • Follow the setup wizard:
      • Click "Next" to continue.
      • Choose the installation location and click "Next".
      • Select the desired installation options:
      • Create a desktop shortcut.
      • Add the “bin” folder to the PATH (recommended).
      • Associate .py files with PyCharm.
      • Add an open folder as a project option.
      • Click "Install".
    • Once the installation is complete, click "Finish".
  3. Launch PyCharm:

    • After the installation, you can start PyCharm by double-clicking the PyCharm shortcut on your desktop or by searching for PyCharm in the Start menu.

macOS

  1. Download PyCharm:

    • Go to the JetBrains PyCharm download page.
    • Download the Community Edition (free) or Professional Edition (paid).
  2. Install PyCharm:

    • Open the downloaded .dmg file.
    • Drag and drop the PyCharm application into the Applications folder.
  3. Launch PyCharm:

    • Open Finder and go to the Applications folder.
    • Find PyCharm and double-click to open it.
    • If you see a warning about opening an application downloaded from the internet, click "Open".

Linux

  1. Download PyCharm:

    • Go to the JetBrains PyCharm download page.
    • Download the tar.gz package for the Community Edition (free) or Professional Edition (paid).
  2. Install PyCharm:

    • Open your terminal.
    • Navigate to the directory where the tar.gz file was downloaded.
    • Extract the tar.gz file:
     tar -xzf pycharm-*.tar.gz
    
    Copier après la connexion
  • Move to the extracted directory:

     cd pycharm-*/
    
    Copier après la connexion
  • Run PyCharm:

     ./bin/pycharm.sh
    
    Copier après la connexion
  1. Create a Desktop Entry (optional):
    • While running PyCharm, go to the main menu and select "Tools" > "Create Desktop Entry".

First-time Startup

  1. Activate PyCharm:

    • On the first startup, you will be prompted to activate PyCharm.
    • For the Community Edition, select "Evaluate for free" and click "Evaluate".
    • For the Professional Edition, enter your JetBrains account credentials or use a license key.
  2. Customize PyCharm:

    • Choose your UI theme (Light or Dark).
    • Configure additional settings as needed.
  3. Create or Open a Project:

    • You can now create a new project, open an existing project, or check out a project from version control.

For more detailed instructions and troubleshooting, refer to the official PyCharm installation guide.

Step 3: Install Selenium

  1. Using pip:

    • Open your command line or terminal, Run as Administrator
    • Install Selenium using the following command:
     pip install selenium
    
    Copier après la connexion

Step 4: Verify Installation

Check Python Installation:

   python --version
Copier après la connexion

Check pip Installation:

   pip --version
Copier après la connexion

Update pip Installation:

python -m pip install --upgrade pip
Copier après la connexion
  1. Verify if Selenium Installed Properly or Not:
pip show selenium
Copier après la connexion

You should get the selenium details

Web Drivers:
For the latest Selenium Version: 4.22.0, Web Drivers have been pre installed
You can verify in path:

C:\Users\AppData\Local\Programs\Python\Python311\Lib\site-packages\selenium\webdriver
Copier après la connexion

you will see the wedrivers for IE, Chrome, Edge, FireFox, Remote, Safari, Chromium.

Verify Selenium Installation:

  • Open a Python interactive shell by typing python in your command line or terminal.
  • Run the following commands:

     import selenium
     print(selenium.__version__)
    
    Copier après la connexion

Example: Basic Selenium Script

Here's a simple script to verify your Selenium setup. This script opens a web browser and navigates to a website.

  1. Install WebDriver:

    • Download the appropriate WebDriver for your browser (e.g., ChromeDriver for Chrome) from Selenium’s official site.
    • Make sure to place the WebDriver executable in a directory that is in your PATH.
  2. Create a Python Script:

   from selenium import webdriver

   # Initialize the WebDriver (assuming ChromeDriver is in your PATH)
   driver = webdriver.Chrome()

   # Open a website
   driver.get("https://www.python.org")

   # Print the title of the page
   print(driver.title)

   # Close the browser
   driver.quit()
Copier après la connexion
  1. Run the Script:

    • Save the script as test_selenium.py.
    • Run the script in your command line or terminal:
     python test_selenium.py
    
    Copier après la connexion

If everything is set up correctly, you should see the browser open, navigate to the Python website, and print the page title in the console.

Additional Selenium Web Drivers Configuration:

If you are using earlier versions or not able to see webdriver, you can download them or For more details you can see visit:
https://pypi.org/project/selenium/

After downloading the files, extract the files and copy the drivers.exe and place in the path or accordingly to your system files path

C:\Users\AppData\Local\Programs\Python\Python311\
Copier après la connexion

This is a pre installed path for python that is available in the environment variables, which you pretty much can use without errors

or You can create a folder in "C drive" and add that file path in environment variables.

Driver "PATH" Configuration:
Here are the instructions on how to add the path C:\Users\AppData\Local\Programs\Python\Python311\ or any "PATH" to the environment variables in Windows:

Adding Python Path to Environment Variables in Windows

Step 1: Open Environment Variables Settings

  1. Open System Properties:

    • Press Win + Pause/Break to open the System window.
    • Alternatively, you can right-click on the This PC or Computer icon on your desktop or in File Explorer and select Properties.
  2. Open Advanced System Settings:

    • In the System window, click on Advanced system settings on the left-hand side.
  3. Open Environment Variables:

    • In the System Properties window, click on the Environment Variables... button near the bottom.

Step 2: Edit the PATH Variable

  1. Locate the PATH Variable:

    • In the Environment Variables window, you will see two sections: User variables and System variables.
    • Scroll down in the System variables section and find the variable named Path. Select it and click on the Edit... button.
  2. Add New Path:

    • In the Edit Environment Variable window, you will see a list of paths. Click on the New button to add a new path.
    • Enter the path C:\Users\AppData\Local\Programs\Python\Python311\ in the new entry.
  3. Save Changes:

    • After adding the path, click OK to close the Edit Environment Variable window.
    • Click OK again to close the Environment Variables window.
    • Finally, click OK to close the System Properties window.

Step 3: Verify the Path Addition

  1. Open Command Prompt:

    • Press Win + R, type cmd, and press Enter to open the Command Prompt.
  2. Check Python Version:

    • Type the following command and press Enter:
     python --version
    
    Copier après la connexion
  • You should see the version of Python installed in C:\Users\AppData\Local\Programs\Python\Python311\

If everything is set up correctly, the command prompt should display the Python version, confirming that the path has been successfully added to the environment variables.

These steps ensure that Python can be accessed from any command prompt window without needing to specify the full path to the executable each time.


Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:dev.to
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!