https://github.com/crispengari/python-tkinter
This is repository contains some tkinter examples.
https://github.com/crispengari/python-tkinter
Last synced: 6 months ago
JSON representation
This is repository contains some tkinter examples.
- Host: GitHub
- URL: https://github.com/crispengari/python-tkinter
- Owner: CrispenGari
- License: mit
- Created: 2022-07-31T18:58:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-16T06:09:22.000Z (about 3 years ago)
- Last Synced: 2025-03-27T17:02:42.647Z (7 months ago)
- Language: Python
- Size: 132 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```shell
pip freeze > requirements.txt
```### Start from here
First you need to clone the repository by running the following command.```shell
git clone https://github.com/CrispenGari/python-tkinter.git
```
Change the directory to `python-tkinter` by running the following command````shell
cd python-tkinter
````Create a virtual environment and activate it by running the following command:
````shell
virtualenv venv
# activating
.\venv\Scripts\activate
````Installing the packages
````shell
pip install -r requirements.txt
````