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

Updating modelbench installation docs. #586

Merged
merged 1 commit into from
Oct 21, 2024
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
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ install ModelBench as a CLI tool or library to use in your own projects.

### Install ModelBench with [Poetry](https://python-poetry.org/) for local development.

1. Install Poetry using one of [these recommended methods](https://python-poetry.org/docs/#installation). For example:
1. Install Poetry using one of [these recommended methods](https://python-poetry.org/docs/#installation). All of these methods require a recent version of python3 to be installed and available on your shell path. For example:
```shell
pipx install poetry
```
Expand All @@ -49,7 +49,9 @@ pipx install poetry
git clone https://github.com/mlcommons/modelbench.git
```

3. Install ModelBench and dependencies.
3. Make sure that you have no python virtual environments activated. They will interfere with the poetry setup.

4. Install ModelBench and dependencies.
```shell
cd modelbench
poetry install
Expand Down
Loading