New Entity AI

Draft 1.0:
Index


configure-> protected: env_jupyter_standard.sh



Configure the jupyter standard 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_standard.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/19 (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_STANDARD}" ]; then
  echo "--------------------------------------------------------------------"
  printf "%b env_jupyter_standard.sh %b\n" "${tmodLabelHeading}" "${tmodReset}"
  printf " -> %s\n" "${PATH_JUPYTER_STANDARD}"
  echo "--------------------------------------------------------------------"
  ## standard
  if [ -d "${PATH_JUPYTER_STANDARD}" ]; then
   CWD="$(pwd)"
   perform_tree_walk_protected "${PATH_JUPYTER_STANDARD}"
   printf "Navigated to the location: %s\n" "${PATH_JUPYTER_STANDARD}"
   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_STANDARD}${PATH_PYCACHE}" ]; then
     perform_removal_generic "-R" "${PATH_JUPYTER_STANDARD}${PATH_PYCACHE}"
    else
     printf "%s was not located... can't remove it.\n" "${PATH_JUPYTER_STANDARD}${PATH_PYCACHE}"
    fi
    if [ -n "${PATH_JUPYTER_STANDARD}${PATH_VE_JUPYTER}" ]; then
     perform_removal_generic "-R" "${PATH_JUPYTER_STANDARD}${PATH_VE_JUPYTER_STANDARD}"
    else
     printf "%s was not located... can't remove it.\n" "${PATH_JUPYTER_STANDARD}${PATH_VE_JUPYTER}"
    fi
    ## Create a new virtual environment in the relative position
    perform_system_action "python" "-m" "${PATH_V_STARTER}" "${PATH_JUPYTER_STANDARD}${PATH_VE_JUPYTER_STANDARD}"
    ## Activate the virtual environment
    perform_system_action "source" "${PATH_JUPYTER_STANDARD}${PATH_VEA_JUPYTER_STANDARD}"
    ## 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_STANDARD}" "-R ${PATH_VE_JUPYTER_STANDARD}"
    ## deactivate the ve
    perform_system_action "deactivate"
    ## Complete
    echo "-----------------------------------------------------------------"
    printf "You have configured the location: %s with %s\n" "${PATH_JUPYTER_STANDARD}" "${BLUEPRINT_OWNER_STANDARD}"
    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_STANDARD}"
  fi
 else
  printf "You need to run this script as the user: %s-> not %s\n" "${OPERATOR_STANDARD}" "${USER}"
 fi
else
 printf "You can't perform this configuration operation unless you're the standard user: You're currently running as user: %s\n" "${SCRIPT_ACS_RUNNER_CONFIGURE}"
fi