We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96de37d commit 8e0188fCopy full SHA for 8e0188f
README.md
@@ -1,2 +1,37 @@
1
-# Camera-with-PyQt5
2
-Simple Camera with PyQt5
+
+# 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