**Hello, I installed successfully following script on Google Colab for installing RAPIDS: 'python rapidsai-csp-utils/colab/install_rapids.py '
The options are 'stable' and 'nightly'. Leaving it blank or adding any other words will default to stable. The option are default blank or 'core'. By default, we install RAPIDSAI and BlazingSQL. The 'core' option will install only RAPIDSAI and not include BlazingSQL,
!python rapidsai-csp-utils/colab/install_rapids.py stable
import os
os.environ['NUMBAPRO_NVVM'] = '/usr/local/cuda/nvvm/lib64/libnvvm.so'
os.environ['NUMBAPRO_LIBDEVICE'] = '/usr/local/cuda/nvvm/libdevice/'
os.environ['CONDA_PREFIX'] = '/usr/local'
But I am getting following Error for BlazingSQL Module: ModuleNotFoundError Traceback (most recent call last) in ()
----> 1 from BlazingSQL import BlazingContext
2 import cudf
3 bc = BlazingContext()
ModuleNotFoundError: No module named 'BlazingSQL'
Can I get any help? BlazingSQL should be installed successfully. Thanks.