File tree 1 file changed +15
-9
lines changed
1 file changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -7,37 +7,43 @@ Binary files for Python 3.
7
7
This repository provides pre-built Python binaries for Linux. Follow the steps below to use them:
8
8
9
9
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.
12
13
13
14
2 . ** Extract the Binary**
14
- - For ` .tar.gz ` files:
15
- ``` bash
15
+ - For ` .tar.gz ` files:
16
+
17
+ ``` bash
16
18
tar -xvzf python-< version> -linux-< arch> .tar.gz
17
19
```
18
20
` ` ` bash
19
21
tar -xvzf python-< version> -linux-< arch> .tar.gz -C /desired/path
20
22
` ` `
21
- - For ` .zip` files:
22
- ` ` ` bash
23
+ - For ` .zip` files:
24
+
25
+ ` ` ` bash
23
26
unzip python-< version> -linux-< arch> .zip
24
27
` ` `
25
28
` ` ` bash
26
29
unzip python-< version> -linux-< arch> .zip -d /desired/path
27
30
` ` `
28
31
29
32
3. ** Set Up Environment**
30
- - Add the extracted binary directory to your ` PATH` :
33
+
34
+ - Add the extracted binary directory to your ` PATH` :
35
+
31
36
` ` ` bash
32
37
export PATH=/desired/path/bin:$PATH
33
38
` ` `
34
- - Verify the installation:
39
+ - Verify the installation:
40
+
35
41
` ` ` bash
36
42
python3 --version
37
43
` ` `
38
44
39
45
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.
41
47
42
48
# # Building Your Own Custom Python Version
43
49
You can’t perform that action at this time.
0 commit comments