fixes for venvs on windows

This commit is contained in:
Believethehype
2023-12-20 18:21:40 +01:00
parent 8bbbef4791
commit 75dc224a4d
2 changed files with 7 additions and 5 deletions

View File

@@ -71,7 +71,7 @@ class DVMTaskInterface:
self.dependencies.append(("nostr-dvm", "nostr-dvm"))
for (module, package) in self.dependencies:
print("Installing Venv Module: " + module)
run([pip_location, "install", "--force-reinstall", package], cwd=dir)
run([pip_location, "install", "--upgrade", package], cwd=dir)
else:
for module, package in self.dependencies:
if module != "nostr-dvm":