上传文件至 ''

This commit is contained in:
zhangxiaolong 2023-11-08 10:42:01 +08:00
parent 7bcee07ef6
commit 4395537bf7
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#!/bin/bash
echo -e "\033[45;30mPreprocessing installation is underway...\033[0m"
tar -xf ./module/python3.tar
mv python3 /usr/local
ln -s /usr/local/python3/bin/python3 /usr/local/bin/python3
ln -s /usr/local/python3/bin/pip3 /usr/local/bin/pip3
echo -e "\033[45;30mThe installation is about to begin...\033[0m"
python3 logic.py

View File

@ -0,0 +1,10 @@
#!/bin/bash
echo -e "\033[45;30mPreprocessing installation is underway...\033[0m"
tar -xf ./module/python3.7.3.tar
mv python3.7.3 /usr/local
ln -s /usr/local/python3.7.3/bin/python3 /usr/local/bin/python373
ln -s /usr/local/python3.7.3/bin/pip3 /usr/local/bin/pip373
echo -e "\033[45;30mThe installation is about to begin...\033[0m"
python373 logic.py