-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #177 from kushaldas/readme
Uses python -m pip style for installation
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,11 +13,11 @@ AudioCraft requires Python 3.9, PyTorch 2.0.0. To install AudioCraft, you can ru | |
```shell | ||
# Best to make sure you have torch installed first, in particular before installing xformers. | ||
# Don't run this if you already have PyTorch installed. | ||
pip install 'torch>=2.0' | ||
python -m pip install 'torch>=2.0' | ||
# Then proceed to one of the following | ||
pip install -U audiocraft # stable release | ||
pip install -U git+https://[email protected]/facebookresearch/audiocraft#egg=audiocraft # bleeding edge | ||
pip install -e . # or if you cloned the repo locally (mandatory if you want to train). | ||
python -m pip install -U audiocraft # stable release | ||
python -m pip install -U git+https://[email protected]/facebookresearch/audiocraft#egg=audiocraft # bleeding edge | ||
python -m pip install -e . # or if you cloned the repo locally (mandatory if you want to train). | ||
``` | ||
|
||
We also recommend having `ffmpeg` installed, either through your system or Anaconda: | ||
|