Skip to content

Commit b606e37

Browse files
committed
added single quotes around the .[...] in the readme
1 parent 8e9c302 commit b606e37

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ pip install -e .
2727
```
2828

2929
Some optional parts of the package require additional dependencies.
30-
- GPU simulation: `pip install -e .[GPU-CUDA12]`
31-
- Generating LP files to solve LABS using commercial IP solvers (`qokit/classical_methods` and `examples/advanced/classical_solvers_for_LABS/`): `pip install -e .[solvers]`
32-
- Max-k-XOR-SAT with JAX (CPU-only): `pip install -e .[xorsat-jax]`
33-
- Max-k-XOR-SAT with JAX + CUDA GPU: `pip install -e .[xorsat-gpu]`
34-
- Max-k-XOR-SAT angle optimization (requires BOBYQA): `pip install -e .[xorsat-optimize]`
30+
- GPU simulation: `pip install -e '.[GPU-CUDA12]'`
31+
- Generating LP files to solve LABS using commercial IP solvers (`qokit/classical_methods` and `examples/advanced/classical_solvers_for_LABS/`): `pip install -e '.[solvers]'`
32+
- Max-k-XOR-SAT with JAX (CPU-only): `pip install -e '.[xorsat-jax]'`
33+
- Max-k-XOR-SAT with JAX + CUDA GPU: `pip install -e '.[xorsat-gpu]'`
34+
- Max-k-XOR-SAT angle optimization (requires BOBYQA): `pip install -e '.[xorsat-optimize]'`
3535

3636
Please note that the GPU dependency is specified for CUDA 12x. For other versions of CUDA, please follow cupy installation instructions.
3737

@@ -57,7 +57,7 @@ It ships two backends (at least one must be available):
5757
make -j
5858
```
5959
If `cmake` is not installed, the C++ backend is silently skipped.
60-
- **JAX**: float64 only, forward-mode JVP gradient, JIT-compiled. Install with `pip install -e .[xorsat-jax]` (CPU) or `pip install -e .[xorsat-gpu]` (CUDA GPU).
60+
- **JAX**: float64 only, forward-mode JVP gradient, JIT-compiled. Install with `pip install -e '.[xorsat-jax]'` (CPU) or `pip install -e '.[xorsat-gpu]'` (CUDA GPU).
6161

6262
See [`examples/QAOA_max_k_xor_sat.ipynb`](./examples/QAOA_max_k_xor_sat.ipynb) for a usage demo.
6363

0 commit comments

Comments
 (0)