You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository is a collection of small Python games and utility projects built to make learning Python more practical and engaging. It includes both command-line projects and a browser-based web app for trying the projects online.
@@ -110,18 +109,21 @@ cd python-mini-project
110
109
#### 2. Create a Virtual Environment
111
110
112
111
For Linux/macOS:
112
+
113
113
```bash
114
114
python3 -m venv venv
115
115
source venv/bin/activate
116
116
```
117
117
118
118
For Windows (Command Prompt):
119
+
119
120
```bash
120
121
python -m venv venv
121
122
venv\Scripts\activate
122
123
```
123
124
124
125
For Windows (PowerShell):
126
+
125
127
```bash
126
128
python -m venv venv
127
129
venv\Scripts\Activate.ps1
@@ -166,6 +168,7 @@ The web application provides a browser-based interface for all projects.
166
168
#### Prerequisites for Web App
167
169
168
170
The web app requires Node.js and npm:
171
+
169
172
- Download from https://nodejs.org/ (v16 or higher recommended)
0 commit comments