mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-13 00:39:46 +00:00
10 lines
134 B
Bash
10 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
|