-1

How do I install all the modules and packages listed below offline on Linux?

import time 
from selenium import webdriver 
from selenium.webdriver.chrome.service import Service 
from selenium.webdriver.common.by import By 
from selenium.webdriver.remote.webelement import WebElement 
from webdriver_manager.chrome import ChromeDriverManager 
from selenium.webdriver.common.keys import Keys 
Sylvester Kruin
  • 3,294
  • 5
  • 16
  • 39
Harry
  • 1
  • 1

1 Answers1

-1

You can use sudo dpkg -i package_name.deb. Replace package_name.deb with the actual name of the package you downloaded.

  • 1) `apt-get install` requires an internet connection 2) the question was about Python packages, specifically the `selenium` package. – Gino Mempin Apr 16 '23 at 00:59