Skip to content

Commit 8e0188f

Browse files
authored
Update README.md
1 parent 96de37d commit 8e0188f

File tree

1 file changed

+37
-2
lines changed

1 file changed

+37
-2
lines changed

README.md

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,37 @@
1-
# Camera-with-PyQt5
2-
Simple Camera with PyQt5
1+
2+
# Camera in Python
3+
4+
Capture Images and Save them using PyQt5
5+
6+
7+
# How to Run this Locally
8+
9+
### Step 1: Create a Virtual Environment
10+
11+
```
12+
pip install virtualenv
13+
cd /path/to/folder
14+
mkdir camera
15+
cd camera
16+
virtualenv .
17+
source scripts/activate
18+
```
19+
20+
### Step 2: Clone Repository and Install Dependencies
21+
22+
```
23+
cd /path/to/folder/camera
24+
mkdir src
25+
cd src
26+
git clone https://github.com/Arvind-4/Camera-with-PyQt5.git .
27+
pip install -r requirements.txt
28+
```
29+
30+
### Step 3: Run the Code
31+
32+
```
33+
cd /path/to/folder/camera/src
34+
python main.py
35+
```
36+
37+

0 commit comments

Comments
 (0)