Skip to content

Commit 5de6c84

Browse files
committed
Added quotes to pip install with optional dependencies
Signed-off-by: Greg von Winckel <[email protected]>
1 parent b80bc72 commit 5de6c84

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,22 @@ $ pip install pytuq
3737
Install additional features as needed:
3838
* Neural network surrogates
3939
```bash
40-
$ pip install pytuq[nn]
40+
$ pip install 'pytuq[nn]'
4141
```
4242

4343
* Particle swarm optimization
4444
```bash
45-
$ pip install pytuq[optim]
45+
$ pip install 'pytuq[optim]'
4646
```
4747

4848
* All optional features
4949
```bash
50-
pip install pytuq[all]
50+
$ pip install 'pytuq[all]'
5151
```
5252

5353
* Development tools
54-
```bash
55-
pip install pytuq[dev]
54+
```bash
55+
$ pip install 'pytuq[dev]'
5656
```
5757

5858
### Installation from Source

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ dev = [
5050
]
5151
nn = [
5252
"torch",
53-
"quinn @ git+https://github.com/sandialabs/quinn.git"
53+
"uqinn"
5454
]
5555
optim = [
5656
"pyswarms"
5757
]
5858
all = [
5959
"torch",
60-
"quinn @ git+https://github.com/sandialabs/quinn.git",
60+
"uqinn",
6161
"pyswarms"
6262
]
6363

0 commit comments

Comments
 (0)