From 49277ad2bf1806a4449d8300118387adb9fe6909 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 2 Apr 2023 04:15:57 +0200 Subject: [PATCH] Add a separate script for installing Pipenv --- scripts/Common/Software/Pipenv/install.sh | 2 ++ scripts/Debian/Software/Python/install.sh | 1 - scripts/PopOS/Collections/personal.sh | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100755 scripts/Common/Software/Pipenv/install.sh diff --git a/scripts/Common/Software/Pipenv/install.sh b/scripts/Common/Software/Pipenv/install.sh new file mode 100755 index 00000000..ebf2afd9 --- /dev/null +++ b/scripts/Common/Software/Pipenv/install.sh @@ -0,0 +1,2 @@ +#!/bin/bash +sudo apt install -y python3 python-is-python3 python3-pip; diff --git a/scripts/Debian/Software/Python/install.sh b/scripts/Debian/Software/Python/install.sh index c1219443..ebf2afd9 100755 --- a/scripts/Debian/Software/Python/install.sh +++ b/scripts/Debian/Software/Python/install.sh @@ -1,3 +1,2 @@ #!/bin/bash sudo apt install -y python3 python-is-python3 python3-pip; -sudo pip install pipenv; diff --git a/scripts/PopOS/Collections/personal.sh b/scripts/PopOS/Collections/personal.sh index daaa5f0d..14f4cd02 100755 --- a/scripts/PopOS/Collections/personal.sh +++ b/scripts/PopOS/Collections/personal.sh @@ -23,6 +23,7 @@ source "../../Debian/Software/Visual Studio Code/install.sh"; source "../../Common/Software/Node.js/install.sh"; source "../../Debian/Software/Python/install.sh"; source "../../Common/Software/pyenv/install.sh"; +source "../../Common/Software/pipenv/install.sh"; source "../../Common/Software/tea/install.sh"; source "../../Common/Software/Godot/install.sh"; source "../../Debian/Software/Virtual Machine Manager/install.sh";