[UPD] doc: windows installation update python 3.10.14
This commit is contained in:
parent
aa0cf69b6f
commit
97b306fcd8
1 changed files with 7 additions and 7 deletions
|
|
@ -207,13 +207,13 @@ If these last steps to set up your development environment were unsuccessful, fo
|
||||||
|
|
||||||
## Manual Installation
|
## Manual Installation
|
||||||
|
|
||||||
### Install Python 3.7.16
|
### Install Python 3.10.14
|
||||||
You can delete the files that are left over in your home directory regarding the python installation when the steps have been completed succesfully.
|
You can delete the files that are left over in your home directory regarding the python installation when the steps have been completed succesfully.
|
||||||
```bash
|
```bash
|
||||||
cd ~
|
cd ~
|
||||||
wget https://www.python.org/ftp/python/3.7.16/Python-3.7.16.tgz
|
wget https://www.python.org/ftp/python/3.10.14/Python-3.10.14.tgz
|
||||||
tar -xzf Python-3.7.16.tgz
|
tar -xzf Python-3.10.14.tgz
|
||||||
cd Python-3.7.16
|
cd Python-3.10.14
|
||||||
./configure --enable-optimizations
|
./configure --enable-optimizations
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
sudo make install
|
sudo make install
|
||||||
|
|
@ -222,13 +222,13 @@ sudo make install
|
||||||
### Verify the installation
|
### Verify the installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python3.7
|
python3.10
|
||||||
```
|
```
|
||||||
|
|
||||||
### Set Python 3.7.16 as default
|
### Set Python 3.10.14 as default
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
alias python='/usr/local/bin/python3.7'
|
alias python='/usr/local/bin/python3.10'
|
||||||
source ~/.bashrc
|
source ~/.bashrc
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue