Use double quotes for pip install
options (#4110)
Co-authored-by: Kayzwer <68285002+Kayzwer@users.noreply.github.com>
This commit is contained in:
@ -27,7 +27,7 @@ cd ultralytics
|
||||
3. Install the package in developer mode using pip:
|
||||
|
||||
```bash
|
||||
pip install -e '.[dev]'
|
||||
pip install -e ".[dev]"
|
||||
```
|
||||
|
||||
This will install the ultralytics package and its dependencies in developer mode, allowing you to make changes to the
|
||||
|
@ -30,7 +30,7 @@ To install the required packages, run:
|
||||
|
||||
```bash
|
||||
# Install and update Ultralytics and Ray Tune packages
|
||||
pip install -U ultralytics 'ray[tune]'
|
||||
pip install -U ultralytics "ray[tune]"
|
||||
|
||||
# Optionally install W&B for logging
|
||||
pip install wandb
|
||||
|
@ -153,11 +153,6 @@ keywords: Ultralytics, Utils, utilitarian functions, colorstr, yaml_save, set_lo
|
||||
### ::: ultralytics.utils.set_sentry
|
||||
<br><br>
|
||||
|
||||
## update_dict_recursive
|
||||
---
|
||||
### ::: ultralytics.utils.update_dict_recursive
|
||||
<br><br>
|
||||
|
||||
## deprecation_warn
|
||||
---
|
||||
### ::: ultralytics.utils.deprecation_warn
|
||||
|
@ -67,7 +67,7 @@ We will walk through an example benchmarking and deploying a sparse version of Y
|
||||
Run the following to install DeepSparse. We recommend you use a virtual environment with Python.
|
||||
|
||||
```bash
|
||||
pip install deepsparse[server,yolo,onnxruntime]
|
||||
pip install "deepsparse[server,yolo,onnxruntime]"
|
||||
```
|
||||
|
||||
### Collect an ONNX File
|
||||
|
Reference in New Issue
Block a user