mirror of
https://github.com/flakestorm/flakestorm.git
synced 2026-05-02 12:22:44 +02:00
Enhance installation instructions across documentation to emphasize the use of virtual environments for Python. Added details for creating and activating virtual environments in README.md, CONTRIBUTING.md, TEST_SCENARIOS.md, TESTING_GUIDE.md, and USAGE_GUIDE.md. Included pipx installation instructions for CLI use in USAGE_GUIDE.md.
This commit is contained in:
parent
bc0abff246
commit
cb034b41ff
5 changed files with 61 additions and 0 deletions
|
|
@ -23,6 +23,11 @@ This guide explains how to run, write, and expand tests for flakestorm. It cover
|
|||
|
||||
```bash
|
||||
# Install dev dependencies
|
||||
# Create virtual environment first
|
||||
python3 -m venv venv
|
||||
source venv/bin/activate # On Windows: venv\Scripts\activate
|
||||
|
||||
# Then install
|
||||
pip install -e ".[dev]"
|
||||
|
||||
# Or manually
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue