mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-14 17:09:45 +00:00
11 lines
134 B
Bash
11 lines
134 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd /sources
|
||
|
tar xf Python-3.10.6.tar.xz
|
||
|
cd Python-3.10.6
|
||
|
|
||
|
pip3 install --no-index $PWD
|
||
|
|
||
|
cd /sources
|
||
|
rm -rf Python-3.10.6
|