Ubuntu 20.04.3 LTS
- Install basic prerequisites:
sudo apt install git gcc g++ cmake subversion xvfb libblas-dev libatlas-base-dev nvidia-cuda-toolkit -y
- Install Anaconda: https://www.anaconda.com/products/individual#linux
- Install traditional PCC Algorithms: Draco, GPCC, VPCC
cd [root]
mkdir build
cd build
cmake ..
make
- Install separate Conda environment for neural network-based PCC algorithms where
{PCC_name}
is the name of PCC algorithm. The env config files can be found under[root]/env
folder:
cd [root]
conda env create -f env/{PCC_name}.yml
- To activate installed Conda environment for neural network-based PCC algorithms:
conda activate {PCC_name}
Thank you and credits to xtorker for part of the easy-to-use Anaconda environment configs env