1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-03-09 15:40:18 +00:00

README: updated Ubuntu dependancies

This commit is contained in:
Bumsik Kim 2018-05-23 16:21:17 -04:00
parent 4e7d0f485a
commit 6db530301c
No known key found for this signature in database
GPG key ID: E31041C8EC5B01C6

View file

@ -20,16 +20,7 @@ Or you can run it using a command line:
$ virtscreen
```
Note that any files related to VirtScreen, including password and log, will be stored in `~/.virtscreen` directory.
## Dependancies
You need [`x11vnc`](https://github.com/LibVNC/x11vnc) and `xrandr`. To install (example on Ubuntu):
```bash
$ sudo apt-get install x11vnc
```
## Installing
## Installation
### Debian (Ubuntu)
@ -45,16 +36,19 @@ $ aurman -S virtscreen
### Python `pip`
If your distro is none of above, you may install it using `pip`:
If your distro is none of above, you may install it using `pip`. In this case, you need to install the dependancies manually.
#### Dependancies
You need [`x11vnc`](https://github.com/LibVNC/x11vnc), `xrandr`, and PyQt5 libraries. To install (e.g. on Ubuntu):
```bash
$ pip install virtscreen
$ sudo apt-get install x11vnc qtbase5-dev # On Debian/Ubuntu, xrandr is included.
```
but a desktop entry won't be created.
#### Installing
### From the Git repository directly
After you install the dependancies then run:
```bash
$ python setup.py install # add --user option if you have permission problem
$ sudo pip install virtscreen
```