Since company's computer require admin right / presmission when installing anythings, is there any method using extend python libraries without installing (e.g. selenium, requests, beautifulsoup4, PyPDF2 and OpenPyXL).
Asked
Active
Viewed 72 times
-2
-
1`--user` shouldn't require any privileges. – dumbPotato21 Jun 13 '22 at 03:26
1 Answers
0
- Go to PyPI
- find your package,
- go to the
Home
at the left sidebar (most of them redirected toGitHub
orGitLab
) - then download the repository and install the package locally, something like this:
pip install /home/yourname/requests
pip install directory_of_setup.py
or use the package without installing it, import
the source code to your project

Ali Rn
- 1,114
- 8
- 19