Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update python README.md #1394

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions bindings/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,16 @@ Python binding to the [iota-sdk library](/README.md).

2. (optional) Create a virtual environment and use it. On Linux and macOS, you can run the following commands:

'''bash
python3 -m venv iota_sdk_venv
source iota_sdk_venv/bin/activate
'''
```bash
python3 -m venv env
source env/bin/activate
```

If you are using Windows, you should run the following instead:

```bash
.\iota_sdk_venv\Scripts\activate`
python3 -m venv env
.\env\Scripts\activate`
```

3. Install the required dependencies and build the wheel by running the following commands:
Expand Down