Skip to content

Commit a5fbe57

Browse files
committed
Fix sqlite3 import
1 parent 07b6cbd commit a5fbe57

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

examples/tutorials/audio_datasets_tutorial.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@
1919
#
2020

2121
import os
22+
import sys
2223

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=}')
2428

2529
import matplotlib.pyplot as plt
2630

0 commit comments

Comments
 (0)