Skip to content

Commit 7f42801

Browse files
Update README.md
1 parent d708c77 commit 7f42801

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,37 +7,43 @@ Binary files for Python 3.
77
This repository provides pre-built Python binaries for Linux. Follow the steps below to use them:
88

99
1. **Download the Binary**
10-
- Navigate to the [Releases](https://github.com/ anubhavkrishna1/python3-binary/releases) section of this repository.
11-
- Download the appropriate binary archive (`.tar.gz` or `.zip`) for your desired Python version and architecture.
10+
11+
- Navigate to the [Releases](https://github.com/ anubhavkrishna1/python3-binary/releases) section of this repository.
12+
- Download the appropriate binary archive (`.tar.gz` or `.zip`) for your desired Python version and architecture.
1213

1314
2. **Extract the Binary**
14-
- For `.tar.gz` files:
15-
```bash
15+
- For `.tar.gz` files:
16+
17+
```bash
1618
tar -xvzf python-<version>-linux-<arch>.tar.gz
1719
```
1820
```bash
1921
tar -xvzf python-<version>-linux-<arch>.tar.gz -C /desired/path
2022
```
21-
- For `.zip` files:
22-
```bash
23+
- For `.zip` files:
24+
25+
```bash
2326
unzip python-<version>-linux-<arch>.zip
2427
```
2528
```bash
2629
unzip python-<version>-linux-<arch>.zip -d /desired/path
2730
```
2831

2932
3. **Set Up Environment**
30-
- Add the extracted binary directory to your `PATH`:
33+
34+
- Add the extracted binary directory to your `PATH`:
35+
3136
```bash
3237
export PATH=/desired/path/bin:$PATH
3338
```
34-
- Verify the installation:
39+
- Verify the installation:
40+
3541
```bash
3642
python3 --version
3743
```
3844

3945
4. **Start Using Python**
40-
- You can now use the custom Python binary for your projects.
46+
- You can now use the custom Python binary for your projects.
4147

4248
## Building Your Own Custom Python Version
4349

0 commit comments

Comments
 (0)