-
Notifications
You must be signed in to change notification settings - Fork 0
/
How_to_Run.txt
44 lines (23 loc) · 981 Bytes
/
How_to_Run.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Steps to Run the Project
Clone the Repository
Open your terminal or command prompt and run the following command to clone the repository:
git clone https://github.com/jesman/kuralVaasi.git
cd kuralVaasi
Create a Virtual Environment (optional)
If you want to create a virtual environment, run:
python -m venv venv
To activate the virtual environment:
On Windows:
venv\Scripts\activate
On macOS/Linux:
source venv/bin/activate
Install the Requirements
Install the necessary packages listed in requirements.txt:
pip install -r requirements.txt
Run the Application
Run your PyQt5 application with the following command:
python main.py
Replace main.py with the entry point of your application if it’s different.
Additional Notes
Ensure that you have any additional resources (like images, fonts, etc.) required by your application in the correct directories.
If you encounter any issues, check the console output for error messages and resolve them as necessary.