Skip to content

Commit 2ec3444

Browse files
committed
install dependencies with python -m pip instead of just pip
1 parent 8e65ee9 commit 2ec3444

File tree

1 file changed

+4
-4
lines changed
  • AI-and-Analytics/End-to-end-Workloads/LanguageIdentification

1 file changed

+4
-4
lines changed

AI-and-Analytics/End-to-end-Workloads/LanguageIdentification/initialize.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
# Install speechbrain
44
git clone --depth 1 --branch v1.0.2 https://github.com/speechbrain/speechbrain.git
55
cd speechbrain
6-
pip install -r requirements.txt
7-
pip install --editable .
6+
python -m pip install -r requirements.txt
7+
python -m pip install --editable .
88
cd ..
99

1010
# Add speechbrain to environment variable PYTHONPATH
1111
export PYTHONPATH=$PYTHONPATH:$(pwd)/speechbrain
1212

1313
# Install webdataset
14-
pip install webdataset==0.2.100
14+
python -m pip install webdataset==0.2.100
1515

1616
# Install libraries for MP3 to WAV conversion
17-
pip install pydub
17+
python -m pip install pydub

0 commit comments

Comments
 (0)