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 installation instructions on readme #108

Merged
merged 1 commit into from
Apr 2, 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
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,17 @@ next_point_idx = obj.argmax()
## Installation
If you would like to utilize a GPU acceleration, follow these [instructions](https://github.com/google/jax#installation) to install JAX with a GPU support.

Then, install GPax using pip:
Then, install GPax using pip. We recommend installing the latest stable deployment from PyPI using

```$ pip install git+https://github.com/ziatdinovmax/gpax```
```bash
pip install gpax
```

Otherwise, if you are confident in what's on the `main` branch of GPax, you can also install directly from the GitHub repository:

```bash
pip install git+https://github.com/ziatdinovmax/gpax
```

If you are a Windows user, we recommend to use the Windows Subsystem for Linux (WSL2), which comes free on Windows 10 and 11.

Expand Down
Loading