mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-02-18 03:11:10 +01:00
Report the python version after activating the SD environment, that log is not very useful otherwise
This commit is contained in:
parent
85de6dd52e
commit
7b9d18caea
@ -16,9 +16,6 @@ echo "Environment Info:"
|
|||||||
call where git
|
call where git
|
||||||
call git --version
|
call git --version
|
||||||
|
|
||||||
call where python
|
|
||||||
call python --version
|
|
||||||
|
|
||||||
call where conda
|
call where conda
|
||||||
call conda --version
|
call conda --version
|
||||||
|
|
||||||
@ -27,4 +24,9 @@ echo.
|
|||||||
@rem activate the environment
|
@rem activate the environment
|
||||||
call conda activate .\stable-diffusion\env
|
call conda activate .\stable-diffusion\env
|
||||||
|
|
||||||
|
call where python
|
||||||
|
call python --version
|
||||||
|
|
||||||
|
echo.
|
||||||
|
|
||||||
cmd /k
|
cmd /k
|
||||||
|
@ -15,9 +15,6 @@ if exist "installer_files\env" set PATH=%cd%\installer_files\env;%cd%\installer_
|
|||||||
call where git
|
call where git
|
||||||
call git --version
|
call git --version
|
||||||
|
|
||||||
call where python
|
|
||||||
call python --version
|
|
||||||
|
|
||||||
call where conda
|
call where conda
|
||||||
call conda --version
|
call conda --version
|
||||||
|
|
||||||
|
@ -19,9 +19,6 @@ if [ "$0" == "bash" ]; then
|
|||||||
which git
|
which git
|
||||||
git --version
|
git --version
|
||||||
|
|
||||||
which python
|
|
||||||
python --version
|
|
||||||
|
|
||||||
which conda
|
which conda
|
||||||
conda --version
|
conda --version
|
||||||
|
|
||||||
@ -32,6 +29,11 @@ if [ "$0" == "bash" ]; then
|
|||||||
source "$CONDA_BASEPATH/etc/profile.d/conda.sh" # otherwise conda complains about 'shell not initialized' (needed when running in a script)
|
source "$CONDA_BASEPATH/etc/profile.d/conda.sh" # otherwise conda complains about 'shell not initialized' (needed when running in a script)
|
||||||
|
|
||||||
conda activate ./stable-diffusion/env
|
conda activate ./stable-diffusion/env
|
||||||
|
|
||||||
|
which python
|
||||||
|
python --version
|
||||||
|
|
||||||
|
echo ""
|
||||||
else
|
else
|
||||||
bash --init-file developer_console.sh
|
bash --init-file developer_console.sh
|
||||||
fi
|
fi
|
||||||
|
@ -336,6 +336,9 @@ echo. > "..\models\stable-diffusion\Put your custom ckpt files here.txt"
|
|||||||
@cd ..\..\..
|
@cd ..\..\..
|
||||||
@echo PYTHONPATH=%PYTHONPATH%
|
@echo PYTHONPATH=%PYTHONPATH%
|
||||||
|
|
||||||
|
call where python
|
||||||
|
call python --version
|
||||||
|
|
||||||
@cd ..
|
@cd ..
|
||||||
@set SD_UI_PATH=%cd%\ui
|
@set SD_UI_PATH=%cd%\ui
|
||||||
@cd stable-diffusion
|
@cd stable-diffusion
|
||||||
|
@ -311,6 +311,9 @@ SD_PATH=`pwd`
|
|||||||
export PYTHONPATH="$SD_PATH:$SD_PATH/env/lib/python3.8/site-packages"
|
export PYTHONPATH="$SD_PATH:$SD_PATH/env/lib/python3.8/site-packages"
|
||||||
echo "PYTHONPATH=$PYTHONPATH"
|
echo "PYTHONPATH=$PYTHONPATH"
|
||||||
|
|
||||||
|
which python
|
||||||
|
python --version
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
export SD_UI_PATH=`pwd`/ui
|
export SD_UI_PATH=`pwd`/ui
|
||||||
cd stable-diffusion
|
cd stable-diffusion
|
||||||
|
@ -13,9 +13,6 @@ if [ -e "installer_files/env" ]; then export PATH="$(pwd)/installer_files/env/bi
|
|||||||
which git
|
which git
|
||||||
git --version
|
git --version
|
||||||
|
|
||||||
which python
|
|
||||||
python --version
|
|
||||||
|
|
||||||
which conda
|
which conda
|
||||||
conda --version
|
conda --version
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user