Skip to content

Commit 0cdb81c

Browse files
committed
update readme.md
1 parent 710922e commit 0cdb81c

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,48 @@ Some of our spider friends are taking an unplanned vacation due to website chang
3131

3232
## Get started faster than you can say "I quit"! 🚀
3333

34+
### Optional: Install Python (if you haven't already)
35+
36+
#### On Windows:
37+
1. Download Python from [python.org](https://www.python.org/downloads/windows/)
38+
2. Run the installer. Make sure to check "Add Python to PATH" during installation.
39+
40+
#### On macOS:
41+
1. Install Homebrew if you haven't:
42+
```
43+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
44+
```
45+
2. Install Python:
46+
```
47+
brew install python
48+
```
49+
50+
#### On Linux (Ubuntu/Debian):
51+
```
52+
sudo apt-get update
53+
sudo apt-get install python3 python3-pip python3-venv
54+
```
55+
56+
### Now, let's get id-jobs running!
57+
3458
1. Clone the repo (it's like adopting a digital pet):
3559
```
3660
git clone https://github.com/ceroberoz/id-jobs.git
3761
cd id-jobs
3862
```
3963

4064
2. Set up your environment (think of it as building a cozy home for your code):
65+
66+
On macOS and Linux:
4167
```
4268
python3 -m venv venv
43-
source venv/bin/activate # On Windows: venv\Scripts\activate
69+
source venv/bin/activate
70+
```
71+
72+
On Windows:
73+
```
74+
python -m venv venv
75+
venv\Scripts\activate
4476
```
4577

4678
3. Install dependencies (like furnishing your code's new home):
@@ -55,6 +87,8 @@ Some of our spider friends are taking an unplanned vacation due to website chang
5587
```
5688
Replace `<crawler-name>` with your chosen crawler (e.g., `vidio`, `gotogroup`)
5789

90+
Don't worry if some of these terms sound like tech gibberish - you're learning! If you get stuck, there's a whole community of friendly coders ready to help. Happy job hunting! 🕷️🔍
91+
5892
## Turn data into eye candy 📊
5993

6094
Want to make charts so pretty they belong in a museum? Here's how:

0 commit comments

Comments
 (0)