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.
2 parents c9ff45b + 8dd3016 commit d65cad5Copy full SHA for d65cad5
bin/fades
@@ -22,6 +22,12 @@
22
import os
23
import sys
24
25
+try:
26
+ import packaging
27
+except ImportError:
28
+ print("Import failed for `packaging` dependency. Please do `pip3 install packaging` and try again")
29
+ exit(-1)
30
+
31
# small hack to allow fades to be run directly from the project, using code
32
# from project itself, not anything already installed in the system
33
parent_dir = os.path.dirname(os.path.dirname(os.path.realpath(sys.argv[0])))
0 commit comments