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 07b6cbd commit 3bc87dfCopy full SHA for 3bc87df
.github/workflows/docs.yaml
@@ -51,6 +51,7 @@ jobs:
51
git config --global --add safe.directory /__w/audio/audio
52
conda create -c conda-forge --strict-channel-priority -y --prefix ci_env python="${PYTHON_VERSION}" ffmpeg="${FFMPEG_VERSION}" cmake ninja
53
conda activate ./ci_env
54
+ export LD_LIBRARY_PATH="${CONDA_PREFIX}/lib:${LD_LIBRARY_PATH}"
55
conda info
56
python -m pip install --upgrade pip
57
echo "::endgroup::"
examples/tutorials/audio_datasets_tutorial.py
@@ -19,8 +19,12 @@
19
#
20
21
import os
22
+import sys
23
-import IPython
24
+try:
25
+ import IPython
26
+except ImportError as msg:
27
+ raise ImportError(f'{msg}\n{os.environ["PATH"]=}\n{os.environ["LD_LIBRARY_PATH"]=}\n{sys.path=}')
28
29
import matplotlib.pyplot as plt
30
0 commit comments