fix(quark): change from 'virtualenv' to 'venv' (PR #2879)
Refactor virtual environment creation command moving from virtualenv to venv
This commit is contained in:
committed by
GitHub
parent
e6b7db35c1
commit
e648e60af9
@@ -132,13 +132,9 @@ public class QuarkManager {
|
||||
}
|
||||
}
|
||||
List<String> cmd = new ArrayList<>();
|
||||
if (JadxSystemInfo.IS_WINDOWS) {
|
||||
cmd.add("python");
|
||||
cmd.add("-m");
|
||||
cmd.add("venv");
|
||||
} else {
|
||||
cmd.add("virtualenv");
|
||||
}
|
||||
cmd.add(VENV_PATH.toString());
|
||||
try {
|
||||
runCommand(cmd);
|
||||
|
||||
Reference in New Issue
Block a user