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