diff --git a/app/helper.py b/app/helper.py index 9334906..e27dc97 100644 --- a/app/helper.py +++ b/app/helper.py @@ -147,9 +147,7 @@ class PipenvOperation(object): if package_name: command = f"pipenv install {package_name}" else: - with open(os.path.join(path, "requirements.txt"), "w") as f: - subprocess.Popen("pipenv run pip freeze".split(), cwd=path, stdout=f) - command = f"pipenv run pip install -r requirements.txt" + command = f"pipenv install" try: output = subprocess.check_output(command.split(), cwd=path) except subprocess.CalledProcessError as e: