From 652c5d95c0996235d0e7484ca09997b8421d8c1a Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Mon, 23 Jan 2023 20:36:40 +0100 Subject: [PATCH] Install python by default --- scripts/Software/Collections/personal.sh | 1 + scripts/Software/Python/install.sh | 4 ++++ 2 files changed, 5 insertions(+) create mode 100755 scripts/Software/Python/install.sh diff --git a/scripts/Software/Collections/personal.sh b/scripts/Software/Collections/personal.sh index a4c0cec1..060ed068 100755 --- a/scripts/Software/Collections/personal.sh +++ b/scripts/Software/Collections/personal.sh @@ -21,6 +21,7 @@ source "$softwareRoot/logo-ls/install.sh"; source "$softwareRoot/VSCodium/install.sh"; source "$softwareRoot/Visual Studio Code/install.sh"; source "$softwareRoot/Node.js/install.sh"; +source "$softwareRoot/Python/install.sh"; source "$softwareRoot/tea/install.sh"; source "$softwareRoot/Godot/install.sh"; source "$softwareRoot/Virtual Machine Manager/install.sh"; diff --git a/scripts/Software/Python/install.sh b/scripts/Software/Python/install.sh new file mode 100755 index 00000000..83144dda --- /dev/null +++ b/scripts/Software/Python/install.sh @@ -0,0 +1,4 @@ +#!/bin/bash +dir="${BASH_SOURCE%/*}"; +source "$dir/setup.sh"; +source "$dir/pyenv.sh";