mirror of
https://github.com/davrot/pytutorial.git
synced 2025-04-18 21:26:41 +02:00
Update README.md
Signed-off-by: David Rotermund <davrot@uni-bremen.de>
This commit is contained in:
parent
d47f7994a4
commit
6312e5f7ff
1 changed files with 9 additions and 9 deletions
|
@ -58,13 +58,13 @@ Python installation (after the dependencies are solved):
|
||||||
```shell
|
```shell
|
||||||
mkdir PySource
|
mkdir PySource
|
||||||
cd PySource
|
cd PySource
|
||||||
wget https://www.python.org/ftp/python/3.11.9/Python-3.11.9.tgz
|
wget https://www.python.org/ftp/python/3.12.3/Python-3.12.3.tgz
|
||||||
tar -xvzf Python-3.11.9.tgz
|
tar -xvzf Python-3.12.3.tgz
|
||||||
cd Python-3.11.9
|
cd Python-3.12.3
|
||||||
./configure --prefix=/home/[YOURUSERNAME]/P3.11 --enable-optimizations
|
./configure --prefix=/home/[YOURUSERNAME]/P3.12 --enable-optimizations
|
||||||
make -j 10
|
make -j 10
|
||||||
make install
|
make install
|
||||||
cd /home/[YOURUSERNAME]/P3.11/bin
|
cd /home/[YOURUSERNAME]/P3.12/bin
|
||||||
./pip3 install --upgrade pip
|
./pip3 install --upgrade pip
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -228,13 +228,13 @@ cd /home/[YOURUSERNAME]/P3.11/bin
|
||||||
##### CPU only
|
##### CPU only
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
pip install tensorflow
|
pip3 install tensorflow
|
||||||
```
|
```
|
||||||
|
|
||||||
##### NVidia GPU
|
##### NVidia GPU
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
pip install tensorflow[and-cuda]
|
pip3 install tensorflow[and-cuda]
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Linux
|
#### Linux
|
||||||
|
@ -243,14 +243,14 @@ pip install tensorflow[and-cuda]
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
cd /home/[YOURUSERNAME]/P3.11/bin
|
cd /home/[YOURUSERNAME]/P3.11/bin
|
||||||
./pip install tensorflow
|
./pip3 install tensorflow
|
||||||
```
|
```
|
||||||
|
|
||||||
##### NVidia GPU
|
##### NVidia GPU
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
cd /home/[YOURUSERNAME]/P3.11/bin
|
cd /home/[YOURUSERNAME]/P3.11/bin
|
||||||
./pip install tensorflow[and-cuda]
|
./pip3 install tensorflow[and-cuda]
|
||||||
```
|
```
|
||||||
|
|
||||||
|Package||
|
|Package||
|
||||||
|
|
Loading…
Add table
Reference in a new issue