mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2024-12-21 23:31:52 +01:00
Fixes For Shortcuts and Battle.net Hanging
~Fixed Python error from python to python3 big thank you to @wolfmad ~fixed Battle.net Hanging or freezing ~fixed Epic games from same issue ~updated Logos and Read.me big thank you to @cchrkk
This commit is contained in:
parent
45d426ea7e
commit
e511632638
@ -1515,7 +1515,7 @@ done
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
wait
|
||||||
|
|
||||||
echo "80"
|
echo "80"
|
||||||
echo "# Downloading & Installing Amazon Games...please wait..."
|
echo "# Downloading & Installing Amazon Games...please wait..."
|
||||||
@ -2063,7 +2063,7 @@ download_dir=~/Downloads/NonSteamLaunchersInstallation
|
|||||||
mkdir -p "$download_dir"
|
mkdir -p "$download_dir"
|
||||||
|
|
||||||
# Check if setuptools is already installed
|
# Check if setuptools is already installed
|
||||||
if ! python -c "import setuptools" &> /dev/null; then
|
if ! python3 -c "import setuptools" &> /dev/null; then
|
||||||
# Download the latest version of setuptools from the Python Package Index
|
# Download the latest version of setuptools from the Python Package Index
|
||||||
download_url="https://files.pythonhosted.org/packages/03/20/630783571e76e5fa5f3e9f29398ca3ace377207b8196b54e0ffdf09f12c1/setuptools-67.8.0.tar.gz"
|
download_url="https://files.pythonhosted.org/packages/03/20/630783571e76e5fa5f3e9f29398ca3ace377207b8196b54e0ffdf09f12c1/setuptools-67.8.0.tar.gz"
|
||||||
wget -P "$download_dir" "$download_url"
|
wget -P "$download_dir" "$download_url"
|
||||||
@ -2075,7 +2075,7 @@ if ! python -c "import setuptools" &> /dev/null; then
|
|||||||
cd "$download_dir/setuptools-67.8.0"
|
cd "$download_dir/setuptools-67.8.0"
|
||||||
|
|
||||||
# Install setuptools in a custom location
|
# Install setuptools in a custom location
|
||||||
python setup.py install --prefix="$download_dir"
|
python3 setup.py install --prefix="$download_dir"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -2090,7 +2090,7 @@ tar -xvf "$download_dir"/extended-setup-tools-*.tar.gz -C "$download_dir"
|
|||||||
cd "$download_dir"/extended-setup-tools-*/
|
cd "$download_dir"/extended-setup-tools-*/
|
||||||
|
|
||||||
# Install extended-setup-tools in a custom location
|
# Install extended-setup-tools in a custom location
|
||||||
python setup.py install --prefix="$download_dir"
|
python3 setup.py install --prefix="$download_dir"
|
||||||
|
|
||||||
# Get the version of Python being used
|
# Get the version of Python being used
|
||||||
python_version=$(python -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
|
python_version=$(python -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
|
||||||
@ -2125,7 +2125,7 @@ download_dir=~/Downloads/NonSteamLaunchersInstallation
|
|||||||
cd "$download_dir"
|
cd "$download_dir"
|
||||||
|
|
||||||
# Install the vdf library in a custom location
|
# Install the vdf library in a custom location
|
||||||
python setup.py install --prefix="$download_dir"
|
python3 setup.py install --prefix="$download_dir"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user