File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ RUN /bin/bash -c "\
24
24
25
25
# Set some environment variables
26
26
ENV GST_PLUGIN_PATH=/root/gst-python-ml/plugins
27
- ENV LD_LIBRARY_PATH=/opt/venv/lib/python3.12/site-packages/nvidia/cublas/lib:/opt/venv/lib/python3.12/site-packages/nvidia/cudnn/lib
28
27
29
28
# allow Python to properly handle Unicode characters during logging.
30
29
ENV PYTHONIOENCODING=utf-8
Original file line number Diff line number Diff line change @@ -35,8 +35,6 @@ or installing with a Docker container:
35
35
36
36
#### Install packages
37
37
38
- Note: ` nvidia-cuda-toolkit ` dependency assumes an Nvidia card on your system
39
-
40
38
```
41
39
sudo apt update && sudo apt -y upgrade
42
40
sudo apt install -y python3-pip python3-venv \
@@ -61,7 +59,6 @@ sudo apt install -y python3-pip python3-venv \
61
59
export VIRTUAL_ENV=$HOME/venv
62
60
export PATH=$VIRTUAL_ENV/bin:$PATH
63
61
export GST_PLUGIN_PATH=$HOME/src/gst-python-ml/plugins
64
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$VIRTUAL_ENV/lib/python3.12/site-packages/nvidia/cublas/lib:$VIRTUAL_ENV/lib/python3.12/site-packages/nvidia/cudnn/lib
65
62
```
66
63
67
64
and then
Original file line number Diff line number Diff line change 2
2
# TTS and STT
3
3
4
4
nvidia-cudnn-cu11==8.9.6.50
5
+ # to use this version of cuda, you must also update LD_LIBRARY_PATH in
6
+ # ~/.bashrc with the following line (adjust for your python version)
7
+ #export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$VIRTUAL_ENV/lib/python3.12/site-packages/nvidia/cublas/lib:$VIRTUAL_ENV/lib/python3.12/site-packages/nvidia/cudnn/lib
8
+
5
9
sentencepiece
6
10
protobuf
7
11
accelerate
You can’t perform that action at this time.
0 commit comments