jessehostetler commited on
Commit
7dfa32a
·
1 Parent(s): b3e1b1c

Improve installation instructions to make sure that challenge-cli dependencies are installed.

Browse files
Files changed (1) hide show
  1. README.md +6 -3
README.md CHANGED
@@ -55,16 +55,19 @@ In the [terminology of Dyff](https://docs.dyff.io/tutorial/), the thing that you
55
 
56
  ### Install the Dyff SDK
57
 
58
- You need Python 3.10+ (3.12 recommended). We recommend you install into a virtual environment:
59
 
60
  ```
61
- python3 -m venv venv
 
62
  source venv/bin/activate
63
  ```
64
 
65
- Then, install the Dyff SDK:
66
 
67
  ```
 
 
68
  python3 -m pip install --upgrade dyff
69
  ```
70
 
 
55
 
56
  ### Install the Dyff SDK
57
 
58
+ You need Python 3.10+ (3.12 recommended). We recommend you install into a virtual environment. If you're using this repository, you can install `dyff` and a few other useful dependencies as described in the [Quick Start](#quick-start) section:
59
 
60
  ```
61
+ # After installing the `uv` tool:
62
+ make setup
63
  source venv/bin/activate
64
  ```
65
 
66
+ Or, you can install just `dyff` into a `venv` like this:
67
 
68
  ```
69
+ python3 -m venv venv
70
+ source venv/bin/activate
71
  python3 -m pip install --upgrade dyff
72
  ```
73