File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 5252blc_wheel_path = os .environ .get ("BLC_WHEEL_PATH" )
5353
5454if am_in_extension :
55+ root_folder = bpy .utils .extension_path_user (__package__ , path = "" , create = True )
56+ wheel_dl_folder = bpy .utils .extension_path_user (__package__ , path = "wheels" , create = True )
57+ wheel_backup_folder = bpy .utils .extension_path_user (__package__ , path = "wheels_backup" , create = True )
58+ wheel_dev_folder = bpy .utils .extension_path_user (__package__ , path = "pyluxcore_custom" , create = True )
59+
60+ """
5561 root_folder = pathlib.Path(__file__).parent.resolve()
5662 wheel_dl_folder = root_folder / "wheels" # for wheels download
5763 if not os.path.exists(wheel_dl_folder):
6268 wheel_dev_folder = root_folder / "pyluxcore_custom" # folder where a nightly build pyluxcore wheel can be placed
6369 if not os.path.exists(wheel_dev_folder):
6470 os.makedirs(wheel_dev_folder)
71+ """
6572 # For installation on PCs without internet, or in company networks where downloading
6673 # with pip is an issue (reported cases), check for the presence of a folder install_offline/
6774 # where the pyluxcore wheel, and its dependencies, are placed.
You can’t perform that action at this time.
0 commit comments