Skip to content

rapidsai/gpuci-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

gpuci-tools Build Status Build Status Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge

User tools for use within the gpuCI environment

Install gpuCI tools

wget method

# as root
wget https://github.com/rapidsai/gpuci-tools/releases/latest/download/tools.tar.gz -O - | tar -xz -C /usr/local/bin

# as non-root
wget https://github.com/rapidsai/gpuci-tools/releases/latest/download/tools.tar.gz -O - | sudo tar -xz -C /usr/local/bin

conda method w/o mamba

conda install -c gpuci gpuci-tools

conda method w/ mamba

conda install -c gpuci -c conda-forge gpuci-tools mamba

curl method

curl -s https://raw.githubusercontent.com/rapidsai/gpuci-tools/main/install.sh | bash
source ~/.bashrc
cd ~

git method

git clone https://github.com/rapidsai/gpuci-tools.git .gpuci
chmod +x .gpuci/tools/*
export PATH="$PWD/.gpuci/tools:$PATH"