easydiffusion/scripts/start.sh

21 lines
496 B
Bash
Raw Normal View History

#!/bin/bash
# set legacy installer's PATH, if it exists
if [ -e "installer" ]; then export PATH="$(pwd)/installer/bin:$PATH"; fi
2022-09-03 14:25:38 +02:00
# Setup the packages required for the installer
scripts/bootstrap.sh
2022-09-03 14:38:52 +02:00
# set new installer's PATH, if it downloaded any packages
if [ -e "installer_files/env" ]; then export PATH="$(pwd)/installer_files/env/bin:$PATH"; fi
# Test the bootstrap
which git
git --version
which conda
conda --version
# Download the rest of the installer and UI
2022-09-03 14:25:38 +02:00
scripts/on_env_start.sh