configure-> protected: env_jupyter_admin.sh
Configure the jupyter admin environment according to a preset routine.
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2024 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/02/13
## INSTANCE: configure/protected/env_jupyter_admin.sh
## MODIFIED: 2024/01/01
## OVERVIEW: Restart your virtual environment inside of jupyter and download
## the required programs
## HISTORY: VERSION 1.5
## -> 2022/02/13 (VERSION 1.0) Development
## -> 2023/11/20 (VERSION 1.1)
## -> 2023/12/16 (VERSION 1.2)
## -> 2023/12/17 (VERSION 1.3)
## -> 2023/12/30 (VERSION 1.4)
## -> 2024/01/01 (VERSION 1.5) Production
###############################################################################
## Documentation:
## This script doesn't depend on an installation of jupyter being present and
## will build one with a virtual instance with pip
###############################################################################
## Build all of the required users for development work
## starting with the admin, and defaulting to the next in line, standard
###############################################################################
## Add filesystem routines that an be run as a batch below:
## This file sources paths from $dugout_dir/system_paths.dugout
###############################################################################
## Source the wrappers
. "$wrappers_generic"
## ACS CHECK
helper_acs_check "configure"
## Change directoreis to the trine instance
if [ "$(id -u)" -ne "${SCRIPT_ACS_RUNNER_CONFIGURE}" ]; then
if [ "${USER}" = "${OPERATOR_ADMIN}" ]; then
echo "--------------------------------------------------------------------"
printf "%b env_jupyter_admin.sh %b\n" "${tmodLabelHeading}" "${tmodReset}"
printf " -> %s\n" "${PATH_JUPYTER}"
echo "--------------------------------------------------------------------"
## admin
if [ -d "${PATH_JUPYTER}" ]; then
CWD="$(pwd)"
perform_tree_walk_protected "${PATH_JUPYTER}"
printf "Navigated to the location: %s\n" "${PATH_JUPYTER}"
echo "confirm operation with 1, kill the operations with 0"
## Get the confirmation cue: 1
## Or, pass the destruction cue: 0
printf "Confirm operations?: \n" >&2
read -r confirmation_check
## Provide a password option
#read -sp 'Provide password: ' password_check
if [ "${confirmation_check}" = "1" ]; then
echo "The operation was continued with the continuation key, 1"
## Make sure there are no blank variables in a -R remove function so you don't
## Don't accidentially nuke your machine
## Remove the previous virtual environment and cache
if [ -n "${PATH_JUPYTER}${PATH_PYCACHE}" ]; then
perform_removal_generic "-R" "${PATH_JUPYTER}${PATH_PYCACHE}"
else
echo "${PATH_JUPYTER}${PATH_PYCACHE} was not located... can't remove it."
fi
if [ -n "${PATH_JUPYTER}${PATH_VE_JUPYTER}" ]; then
perform_removal_generic "-R" "${PATH_JUPYTER}${PATH_VE_JUPYTER}" ;
else
printf "%s was not located... can't remove it.\n" "${PATH_JUPYTER}${PATH_VE_JUPYTER}"
fi
## Create a new virtual environment in the relative position
perform_system_action "python" "-m" "${PATH_V_STARTER}" "${PATH_JUPYTER}${PATH_VE_JUPYTER}"
## Activate the virtual environment
perform_system_action "source" "${PATH_JUPYTER}${PATH_VEA_JUPYTER}"
## Upgrade pip
perform_system_action "pip" "install" "--upgrade" "pip"
## Install the packages: Needs to be made dynamic
perform_system_action "pip" "install" "jupyter"
## mint the environment with the standard blueprint
determine_mint_logic "chown" "${BLUEPRINT_OWNER_1}" "-R ${PATH_JUPYTER}${PATH_VE_JUPYTER}"
## deactivate the ve
perform_system_action "deactivate"
## Complete
echo "-----------------------------------------------------------------"
printf "You have configured the location: %s with %s\n" "${PATH_JUPYTER}${PATH_VE_JUPYTER}" "${BLUEPRINT_OWNER_1}"
echo "-----------------------------------------------------------------"
else
echo "The opertion was terminated by the user with the destruction key: 0"
fi
perform_tree_walk_protected "${CWD}"
else
printf "There was no environment: %s to configure. Falling back...\n" "${PATH_JUPYTER}"
fi
else
printf "You need to run this script as the user: %s-> not %s\n" "${OPERATOR_ADMIN}" "${USER}"
fi
else
printf "You can't perform this configuration operation unless you're a standard user: You're currently running as user: %s\n" "${SCRIPT_ACS_RUNNER_CONFIGURE}"
fi