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
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,3 +48,18 @@ Here are a few types of contributions that we would be interested in hearing abo
48
48
## Making Code Contributions
49
49
50
50
for those interested in contributing code to the project, please review the [Code Contribution Guide](https://github.com/deepgram/deepgram-python-sdk/blob/main/.github/CODE_CONTRIBUTIONS_GUIDE.md) for more details.
51
+
52
+
## Building Locally
53
+
54
+
Assuming you are using `pipenv`:
55
+
56
+
```bash
57
+
# Install deps
58
+
pipenv install
59
+
# Build package
60
+
pipenv run python3 -m build
61
+
# Install package from local build
62
+
pipenv install ./dist/deepgram_sdk-0.0.0.tar.gz
63
+
# Try an example!
64
+
DEEPGRAM_API_KEY=<key> pipenv run python3 examples/agent/async_simple/main.py
0 commit comments