We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e65ee9 commit 2ec3444Copy full SHA for 2ec3444
AI-and-Analytics/End-to-end-Workloads/LanguageIdentification/initialize.sh
@@ -3,15 +3,15 @@
3
# Install speechbrain
4
git clone --depth 1 --branch v1.0.2 https://github.com/speechbrain/speechbrain.git
5
cd speechbrain
6
-pip install -r requirements.txt
7
-pip install --editable .
+python -m pip install -r requirements.txt
+python -m pip install --editable .
8
cd ..
9
10
# Add speechbrain to environment variable PYTHONPATH
11
export PYTHONPATH=$PYTHONPATH:$(pwd)/speechbrain
12
13
# Install webdataset
14
-pip install webdataset==0.2.100
+python -m pip install webdataset==0.2.100
15
16
# Install libraries for MP3 to WAV conversion
17
-pip install pydub
+python -m pip install pydub
0 commit comments