install_blender_python_modules
install_blender_python_modules copied to clipboard
Install any python module for Blender python
Results
2
install_blender_python_modules issues
Sort by
recently updated
recently updated
newest added
On windows, running the script causes a "sys referenced before assignment" bug because a local variable sys is being referenced rather than the imported module sys. Adding a 'global sys'...
This line is not working on Windows, with blender 4.5 : subprocess.call([python_exe, "import ", packageName]) Here is a suggestion for fixing this ``` def installModule(packageName): python_exe = python_exec() try: subprocess.check_call([python_exe,...