File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,10 @@ To get started developing the SDK:
41
41
42
42
4 . Install the required dependencies:
43
43
``` 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
45
48
```
46
49
47
50
### Code Formatting
@@ -64,14 +67,20 @@ For running integration tests, you'll need to configure your environment:
64
67
``` bash
65
68
export $( cat .env | xargs)
66
69
```
67
- - For Windows (PowerShell):
70
+ - For Windows (PowerShell): Load environment variables
68
71
` ` ` 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
+ }
73
77
}
74
78
` ` `
79
+ - For macOS/Linux: Load environment variables from .env file
80
+ ` ` ` bash
81
+ export $( cat .env | xargs)
82
+ ` ` `
83
+
75
84
76
85
# # Testing the SDK
77
86
You can’t perform that action at this time.
0 commit comments