mirror of
https://github.com/ONLYOFFICE/build_tools.git
synced 2026-02-10 20:45:38 +08:00
17 lines
335 B
Bash
Executable File
17 lines
335 B
Bash
Executable File
#!/bin/bash
|
|
|
|
wget https://github.com/ONLYOFFICE-data/build_tools_data/raw/refs/heads/master/python/python3.tar.gz
|
|
wget https://github.com/ONLYOFFICE-data/build_tools_data/raw/refs/heads/master/python/extract.sh
|
|
|
|
chmod +x ./extract.sh
|
|
./extract.sh
|
|
|
|
cd ./python3/bin
|
|
ln -s python3 python
|
|
cd ../../
|
|
|
|
rm ./extract.sh
|
|
rm ./python3.tar.gz
|
|
|
|
|