Skip to content

Commit

Permalink
Remove torchaudio from GETSTARTED.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rathaumons authored Nov 8, 2024
1 parent 96094f5 commit 069418b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions GETSTARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,32 +27,32 @@ All requirements are not strictly limited. However, some specific modules might
- On Windows:
- With GPU:
```
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
pip install -r requirements.txt
```
- For CPU-only:
```
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
pip install -r requirements.txt
```
- On Linux:
- With GPU:
```
python -m pip install tensorflow[and-cuda] # TensorFlow GPU
pip install torch torchvision torchaudio
pip install torch torchvision
pip install -r requirements.txt
```
- For CPU-only:
```
python -m pip install tensorflow # TensorFlow CPU
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
pip install -r requirements.txt
```
- On macOS:
- With GPU: Not available!
- For CPU:
```
pip install torch torchvision torchaudio
pip install torch torchvision
pip install -r requirements.txt
```
Expand Down

0 comments on commit 069418b

Please sign in to comment.