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 d42fbd8 + ba751aa commit 008426bCopy full SHA for 008426b
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