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 9e08fb3 commit 6a415ecCopy full SHA for 6a415ec
__init__.py
@@ -20,6 +20,7 @@
20
import sys
21
import subprocess
22
import bpy
23
+from pathlib import Path
24
25
26
if bpy.app.version < (2, 91, 0):
@@ -97,7 +98,7 @@ def execute(self, context):
97
98
"install",
99
*bpy.context.scene.pip_module_name.split(" "),
100
"--target",
- str(bpy.utils.script_path_user()),
101
+ Path(bpy.utils.script_path_user()) / "addons/modules",
102
)
103
return {"FINISHED"}
104
0 commit comments