Q:

python pip install

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
#Once you do that, enter line 3 inside
python get-pip.py
4
python -m pip install moduleName
2
## To install Pip, first download get-pip.py from:
https://bootstrap.pypa.io/get-pip.py
  
## Then run the following command in the command line
## in the folder where the file has been saved.
python get-pip.py
9
python get-pip.py
1
# Use Chrome in selenium
# Run cmd type: python -m pip install webdriver-manager

from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
browser = webdriver.Chrome(ChromeDriverManager().install())
browser.get('https://www.legifrance.gouv.fr')
searchElem = browser.find_element_by_css_selector('#query')
searchElem.send_keys('jurisprudence')
searchElem.submit()
browser.back()
1
python get-pip.py
0
pip install pyldavis
0
python -m pip install <package>

#Download Selenium
python -m pip install selenium
1

New to Communities?

Join the community