User Manual Orange Pi Zero 3

  Features   |  Use   |    Linux     |  Linux SDK   |  Android   |  Android SRC   |

RU          EN  

Chapt 3. Instructions for use of Debian/Ubuntu Server and Xfce desktop system
Страница:   25    26    27    28    29    30    31    32    33    34    35    36    37    38    39    40    41    42    43    44    45    46    47    48    49    50    51    52    53    54    55    56    57    58    59    60    61    62    63    64    65    66    67    68    69    70    71    72    73    74    75    76    77    78    79    80    81    82    83    84    85    86    87    88    89    90    91    92    93    94    95    96    97    98    99    100    101    102    103    104    105    106    107    108    109    110    111    112    113    114    115    116    117    118    119    120    121    122  


3.22.1. Python source code compilation and installation method
If the Python version in the Ubuntu or Debian system software warehouse does not meet the requirements of development, if you want to use the latest version of Python, you can use the following method to download the source code package of Python to compile and install the latest version of Python. The following demonstration is the latest version of the compilation and installation of Python3.9. If you want to compile and install other versions of Python, the method is the same (need to download the source code corresponding to the Python you want to install).

  • 1) First install the dependency package required to compile Python

    orangepi@orangepi:~$ sudo apt-get update
    orangepi@orangepi:~$ sudo apt-get install -y build-essential zlib1g-dev \
    libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libsqlite3-dev \
    libreadline-dev libffi-dev curl libbz2-dev

  • 2) Then download the latest version of the Python3.9 source code and decompress it

    orangepi@orangepi:~$ wget \
    https://www.python.org/ftp/python/3.9.10/Python-3.9.10.tgz
    orangepi@orangepi:~$ tar xvf Python-3.9.10.tgz

  • 3) Then run the configuration command

    orangepi@orangepi:~$ cd Python-3.9.10
    orangepi@orangepi:~$ ./configure --enable-optimizations

  • 4) Then compile and install python3.9, the compilation time takes about half an hour

    orangepi@orangepi:~$ make -j4
    orangepi@orangepi:~$ sudo make altinstall

  • 5) After installation, you can use the following command to view the Python version number just installed

    orangepi@orangepi:~$ python3.9 --version
    Python 3.9.10

  • 6) Then update pip

    orangepi@orangepi:~$ /usr/local/bin/python3.9 -m pip install --upgrade pip

     <         > 


  • Страница:   25    26    27    28    29    30    31    32    33    34    35    36    37    38    39    40    41    42    43    44    45    46    47    48    49    50    51    52    53    54    55    56    57    58    59    60    61    62    63    64    65    66    67    68    69    70    71    72    73    74    75    76    77    78    79    80    81    82    83    84    85    86    87    88    89    90    91    92    93    94    95    96    97    98    99    100    101    102    103    104    105    106    107    108    109    110    111    112    113    114    115    116    117    118    119    120    121    122