11 lines
332 B
Bash
11 lines
332 B
Bash
#!/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
|
|
|
|
|