README.md 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Sample Text Editor

A **sample text editor** that shows how to use Qt Designer to create GUI applications.

## How to Run this Application

To run this application, you need to [install `PyQt5`](https://realpython.com/python-pyqt-gui-calculator/#installing-pyqt) on your Python environment. To do that, you can run the following commands in a terminal or command prompt:

```sh
$ python3 -m venv ./venv
$ source venv/bin/activate
(venv) $ pip install PyQt5
```

Once you have [PyQt](https://www.riverbankcomputing.com/static/Docs/PyQt5/) installed, you can run the application by executing the following command:

```sh
L
Leodanis Pozo Ramos 已提交
18
(venv) $ cd sample_editor/
19 20 21 22 23 24 25 26 27 28 29
(venv) $ python app.py
```

This command will launch the application, so you'll be able to experiment with it.

## About the Author

Leodanis Pozo Ramos – [@lpozo78](https://twitter.com/lpozo78) – lpozor78@gmail.com

## License

L
Leodanis Pozo Ramos 已提交
30
The set of icons used in this application are part of the [TurkinOS](https://github.com/llamaret/turkinos-icon) icon theme, which is distributed under the [GPL v3.0 license](https://github.com/llamaret/turkinos-icon/blob/master/LICENSE). See `ui/resources/LICENSE` for details.