Skip to content

Commit

Permalink
fix(doc): add required dependencies to setup.py and to README
Browse files Browse the repository at this point in the history
  • Loading branch information
lyubomyrferents authored Dec 14, 2023
1 parent da88e6b commit 920baf2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,18 @@ and then use the commands listed below. Please note we use `venv` to properly se
python interpreter version and to isolate development environment from the system.

Prerequisites:
1. Install all of the VCS extras as described in the [Universum installation manual](
1. Make sure the libssl-dev and libcrypto++-dev packages are available in your environment.
```bash
sudo apt install libssl-dev libcrypto++-dev
```
2. Install all of the VCS extras as described in the [Universum installation manual](
https://universum.readthedocs.io/en/latest/install.html#vcs-related-extras),
(including installation of Git and P4 CLI)
2. Install Docker (`docker-ce`, `docker-ce-cli`) as described in the [official installation manual](
3. Install Docker (`docker-ce`, `docker-ce-cli`) as described in the [official installation manual](
https://docs.docker.com/engine/installation/linux/ubuntu/#install-using-the-repository)

* Also add current user to 'docker' group (use `sudo usermod -a -G docker $USER` and then relogin)
3. Install Mozilla WebDriver: `sudo apt install firefox-geckodriver`
4. Install Mozilla WebDriver: `sudo apt install firefox-geckodriver`

Further commands:
```bash
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ def readme():
'types-requests',
'selenium==3.141',
'urllib3==1.26.15', # This is required for selenium-3.141 to work correctly
'types-PyYAML==6.0'
'types-PyYAML==6.0',
'wheel'
]
},
package_data={'': ['*.css', '*.js']}
Expand Down

0 comments on commit 920baf2

Please sign in to comment.