Update jupyter.sh

This commit is contained in:
SuperYuIuo 2023-04-27 20:47:24 +08:00 committed by GitHub
parent 9b51e22ef3
commit 3ac29a197d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,15 @@
#by spiritlhl #by spiritlhl
#from https://github.com/spiritLHLS/one-click-installation-script #from https://github.com/spiritLHLS/one-click-installation-script
#version: 2022.12.21 #version: 2022.12.21
utf8_locale=$(locale -a 2>/dev/null | grep -i -m 1 -E "UTF-8|utf8")
if [[ -z "$utf8_locale" ]]; then
echo "No UTF-8 locale found"
else
export LC_ALL="$utf8_locale"
export LANG="$utf8_locale"
export LANGUAGE="$utf8_locale"
echo "Locale set to $utf8_locale"
fi
ver="2022.12.21" ver="2022.12.21"
changeLog="一键安装jupyter环境" changeLog="一键安装jupyter环境"
source ~/.bashrc source ~/.bashrc