0

I successfully downloaded the tarz for python3.11.4 but when I enter python it still says I am using python3.9. I am using a chromebook with linux debian 11

I ran the tarball and everything downloaded and is setup but when I exit and go back in oython it says I'm using version 3.9

1 Answers1

0

If you really want to build from source, follow these steps:

  1. clone from github master branch or download from [https://www.python.org/downloads/][python.org]
    git clone https://github.com/python/cpython
  1. configure where the final build file will go
    cd cpython
    ./configure --prefix=$HOME/python3.9
  1. build
    make
    make install
binaryescape
  • 105
  • 6