Skip to content

Commit

Permalink
small tweaks to python quickstart on release
Browse files Browse the repository at this point in the history
  • Loading branch information
Davetbutler committed Jul 3, 2024
1 parent bef644b commit ed9306c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions docs/python-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,16 @@ The [Nillion Python Starter repo](https://github.com/NillionNetwork/nillion-pyth
python3 --version
python3 -m pip --version
```

:::


4. Create and activate a virtual environment
```bash
python3 -m venv .venv
source venv/bin/activate
source .venv/bin/activate
```

5. Intall the requirements
```bash
pip install -r requirements.txt
```

You now have everything we need to start your Nillion developer journey. We will work in the `quickstart` directory, however, if you ever get stuck, you can see a fully completed version of the quickstart in the `quickstart_complete` directory.
Expand Down Expand Up @@ -221,6 +223,7 @@ nillion-devnet
```

All configurations of the devnet you will need are written to the following environment file `/Users/<user>/.config/nillion/nillion-devnet.env`
You need to leave the devnet running in the background while you run your program in the next section.

### Using the Python client to run your program

Expand Down

0 comments on commit ed9306c

Please sign in to comment.