Readme changes

This commit is contained in:
Tom Schimansky 2021-05-08 12:35:32 +02:00
parent 71aabf3685
commit 7987711b3b
2 changed files with 10 additions and 2 deletions

View File

@ -11,9 +11,17 @@ CustomTkinter also supports a light and dark theme,
which can either be set manually or get controlled by
the system appearance mode (only macOS).
### Example program (simple button):
### Instalation
To use CustomTkinter, just place the /customtkinter folder from this repository
next to your program, and then you can do `import customtkinter`.
next to your program, or **install the module with pip**:
```
pip install customtkinter
```
### Example program (simple button):
To test customtkinter you can try this simple example with only a single button:
```python
import tkinter
import customtkinter # <- import the CustomTkinter module

View File