Installing Parallel
Procedure
- Use PuTTY to log in to the server as the root user.
- Install the dependencies.
pip3 install parallel ninja meson
- Download the Parallel installation package.
wget https://mirror.tuna.tsinghua.edu.cn/gnu/parallel/parallel-latest.tar.bz2
- Decompress the Parallel installation package.
tar xvf parallel-latest.tar.bz2
- Go to the directory generated after the decompression.
cd parallel-latest
- Perform the configuration.
./configure --prefix=/path/to/parallel
- Perform the compilation and installation.
make -j16 && make install
- Load the environment variable.
export PATH=/path/to/parallel:$PATH
Parent topic: Configuring the Compilation Environment