我要评分
获取效率
正确性
完整性
易理解

Installing the Python Interpreter

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Decompress the installation package.
    tar xf Python-3.8.2.tar.xz
  3. Go to the directory generated after the decompression.
    cd Python-3.8.2
  4. Create a Makefile file.
    ./configure --prefix=/path/to/PYTHON
  5. Perform the compilation and installation.
    make -j 96
    make install
  6. Set the Python environment variables.
    export PATH=/path/to/PYTHON/bin:$PATH