Skip to main content
  • 2 years ago
Python Package Manager - pip

https://www.testingdocs.com/study/courses/selenium-python-beginner/
Transcript
00:00Hi, in this video, you'd learn about Python Package Manager, PIP.
00:10PIP is a recursive acronym that stands for PIP Installs Packages.
00:17So this tool is used to install, update or uninstall a Python package which are not part
00:25of standard Python library.
00:31In this example, we'll install a Python module Selenium.
00:39Check if PIP is installed.
00:42Open a command prompt and type the following command, pip --"version".
00:55This will output the version of the PIP command.
00:59So PIP 24.2 version is installed on this machine.
01:06To install a Python Selenium module using PIP command, so to install the Selenium library,
01:14use the following command, pip install selenium, enter this command.
01:23This will install the Selenium library.
01:31And it will also install the necessary dependencies on Selenium.
01:52Before writing Python's Selenium scripts, we need to install this library on the development
02:00machine.
02:05This will take some time depending on your machine configuration.
02:10Here you can see it is installing all the dependencies as well as the Selenium library.
02:27That's it.
02:28This video is a part of Selenium Python beginner course.
02:37So hope you understood how to install Selenium Python library using Python package manager
02:46PIP.
02:47So to upgrade the PIP, you can use the following command, python --"mip install --".
03:05This will upgrade the Python package manager to the latest version.
03:30This will uninstall the existing PIP version and then reinstall the latest version.
03:49You can cross verify using the version command, pip --"version".
04:09That's it.
Be the first to comment
Add your comment

Recommended