Skip to content

Commit c6b0038

Browse files
authored
Merge pull request #551 from vigneswaravula/patch-1
Updated dev instructions in the README.md
2 parents 92f5c68 + beb0f96 commit c6b0038

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ To get started developing the SDK:
4141

4242
4. Install the required dependencies:
4343
```bash
44-
pip install -e . && pip install -r requirements-dev.txt
44+
# Upgrade pip before installing dependencies
45+
python -m pip install --upgrade pip
46+
# Install required dependencies for development
47+
pip install -e . && pip install -r requirements-dev.txt
4548
```
4649

4750
### Code Formatting
@@ -64,14 +67,20 @@ For running integration tests, you'll need to configure your environment:
6467
```bash
6568
export $(cat .env | xargs)
6669
```
67-
- For Windows (PowerShell):
70+
- For Windows (PowerShell): Load environment variables
6871
```powershell
69-
Get-Content .env | ForEach-Object {
70-
if ($_ -match '^(.*?)=(.*)$') {
71-
$env:($matches[1]) = $matches[2]
72-
}
72+
# Run this in PowerShell (not Command Prompt)
73+
Get-Content .env | ForEach-Object {
74+
if ($_ -match '^(.*?)=(.*)$') {
75+
$env:($matches[1]) = $matches[2]
76+
}
7377
}
7478
```
79+
- For macOS/Linux: Load environment variables from .env file
80+
```bash
81+
export $(cat .env | xargs)
82+
```
83+
7584
7685
## Testing the SDK
7786

0 commit comments

Comments
 (0)