21 lines
680 B
Bash
21 lines
680 B
Bash
# Be root!!!
|
|
mkdir /home/terminal
|
|
cd ~
|
|
rm -rf PySource
|
|
mkdir PySource
|
|
cd PySource
|
|
wget https://www.python.org/ftp/python/3.13.1/Python-3.13.1.tgz
|
|
tar -xvzf Python-3.13.1.tgz
|
|
cd Python-3.13.1/
|
|
./configure --prefix=/home/terminal/xonsh_3.13.1
|
|
make -j 10
|
|
make install
|
|
/home/terminal/xonsh_3.13.1/bin/pip3 install --upgrade pip
|
|
/home/terminal/xonsh_3.13.1/bin/pip3 install numpy scipy pandas matplotlib scikit-learn tqdm natsort
|
|
/home/terminal/xonsh_3.13.1/bin/pip3 install 'xonsh[full]'
|
|
/home/terminal/xonsh_3.13.1/bin/pip3 install xontrib-term-integrations
|
|
|
|
chmod -R a+r /home/terminal/xonsh_3.13.1
|
|
chmod -R a-w /home/terminal/xonsh_3.13.1
|
|
chmod -R u+w /home/terminal/xonsh_3.13.1
|
|
|