Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tf_setup
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package Registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AI projects
tf_setup
Commits
cca61a4d
Commit
cca61a4d
authored
9 months ago
by
Andri Joos
Browse files
Options
Downloads
Patches
Plain Diff
add python setup instructions
parent
f6ae1610
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+25
-0
25 additions, 0 deletions
README.md
with
25 additions
and
0 deletions
README.md
+
25
−
0
View file @
cca61a4d
# Python setup
In case a not installed python version is needed, follow these steps.
## Download Python
The required Python version can be downloaded from
[
here
](
https://www.python.org/downloads/
)
.
Extract it and open a terminal in the extracted folder.
## Install Python
Configure the installation.
The
`--with-openssl-rpath`
is needed from Python 3.9 onwards, else pip will say it's missing ssl.
```
sh
./configure
--enable-optimizations
--with-openssl-rpath
=
/usr/lib/x86_64-linux-gnu
```
Install Python
```
sh
sudo
make
-j4
&&
sudo
make altinstall
```
## Test
If everything is set up correctly, the following command should work
```
sh
pythonx.y
-m
ssl
```
# TensorFlow setup
detailed instructions can be found at
[
tensorflow installation guide
](
https://www.tensorflow.org/install/pip
)
, but they do not work out of the box!
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment