Fixed installation commands
Browse files
README.md
CHANGED
@@ -76,15 +76,21 @@ Users (both direct and downstream) should be made aware of the risks, biases and
|
|
76 |
|
77 |
## Installation
|
78 |
|
79 |
-
To install the model, you will need to execute the following commands:
|
80 |
|
|
|
81 |
```console
|
82 |
git clone https://huggingface.co/TomRB22/pivaenist
|
83 |
sudo apt install -y fluidsynth
|
84 |
-
pip install -r
|
85 |
```
|
86 |
|
87 |
-
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
The first one will clone the repository. Then, fluidsynth, a real-time MIDI synthesizer, is also set up in order to be used by the pretty-midi library. With the last line, you will make sure to have all dependencies on your system.
|
90 |
|
|
|
76 |
|
77 |
## Installation
|
78 |
|
79 |
+
To install the model, you will need to **change your working directory to the desired installation location** and execute the following commands:
|
80 |
|
81 |
+
**_Windows_**
|
82 |
```console
|
83 |
git clone https://huggingface.co/TomRB22/pivaenist
|
84 |
sudo apt install -y fluidsynth
|
85 |
+
pip install -r ./pivaenist/requirements.txt
|
86 |
```
|
87 |
|
88 |
+
**_Mac_**
|
89 |
+
```console
|
90 |
+
git clone https://huggingface.co/TomRB22/pivaenist
|
91 |
+
brew install fluidsynth
|
92 |
+
pip install -r ./pivaenist/requirements.txt
|
93 |
+
```
|
94 |
|
95 |
The first one will clone the repository. Then, fluidsynth, a real-time MIDI synthesizer, is also set up in order to be used by the pretty-midi library. With the last line, you will make sure to have all dependencies on your system.
|
96 |
|