From b59fde6b4e65de382742217897d62fb17edd6a68 Mon Sep 17 00:00:00 2001 From: Marcus Date: Wed, 28 Jan 2026 14:56:58 +0100 Subject: [PATCH] docs: add virtual environment setup instructions Clarified the installation process by adding steps for creating and activating a Python virtual environment. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 2ef80bb5..157d6e94 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,13 @@ # kalshi-starter-code-python Example python code for accessing api-authenticated endpoints on [Kalshi](https://kalshi.com). This is not an SDK. +### Quick Setup +1. Create a virtual environment: `python -m venv venv` +2. Activate it: + - Windows: `venv\Scripts\activate` + - Mac/Linux: `source venv/bin/activate` +3. Install dependencies: `pip install -r requirements.txt` + ## Installation Install requirements.txt in a virtual environment of your choice and execute main.py from within the repo.