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 35a1ff4 commit ba751aaCopy full SHA for ba751aa
src/compas_blender/install.py
@@ -62,6 +62,9 @@ def install(blender_path):
62
print('Conda environment not found. The installation into Blender requires an active conda environment with a matching Python version to continue.')
63
sys.exit(-1)
64
65
+ if not os.path.exists(blender_path):
66
+ raise FileNotFoundError('Blender version folder not found.')
67
+
68
path, version = os.path.split(blender_path)
69
70
print('Installing COMPAS for Blender {}'.format(version))
0 commit comments