Errors when installing OpenNMT 3 on Kaggle

For my classes I wanted to install OpenNMT on kaggle to use their free gpu.
(MT -- 02 -- Train RNN | Kaggle)

When I
!pip install OpenNMT-py
I get
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. fastai 2.5.3 requires torch<1.11,>=1.7.0, but you have torch 1.13.1 which is incompatible. allennlp 2.8.0 requires torch<1.11.0,>=1.6.0, but you have torch 1.13.1 which is incompatible.

While I get a Successfully installed OpenNMT-py-3.0.4, when running the onmt_build_vocab step I get the following error
Traceback (most recent call last): File "/opt/conda/lib/python3.7/site-packages/torch/__init__.py", line 172, in _load_global_deps ctypes.CDLL(lib_path, mode=ctypes.RTLD_GLOBAL) File "/opt/conda/lib/python3.7/ctypes/__init__.py", line 364, in __init__ self._handle = _dlopen(self._name, mode) OSError: /opt/conda/lib/python3.7/site-packages/torch/lib/../../nvidia/cublas/lib/libcublas.so.11: undefined symbol: cublasLtHSHMatmulAlgoInit, version libcublasLt.so.11

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "/opt/conda/bin/onmt_build_vocab", line 5, in <module> from onmt.bin.build_vocab import main File "/opt/conda/lib/python3.7/site-packages/onmt/__init__.py", line 2, in <module> import onmt.inputters File "/opt/conda/lib/python3.7/site-packages/onmt/inputters/__init__.py", line 6, in <module> from onmt.inputters.inputter import build_vocab, IterOnDevice File "/opt/conda/lib/python3.7/site-packages/onmt/inputters/inputter.py", line 5, in <module> import torch File "/opt/conda/lib/python3.7/site-packages/torch/__init__.py", line 217, in <module> _load_global_deps() File "/opt/conda/lib/python3.7/site-packages/torch/__init__.py", line 178, in _load_global_deps _preload_cuda_deps() File "/opt/conda/lib/python3.7/site-packages/torch/__init__.py", line 158, in _preload_cuda_deps ctypes.CDLL(cublas_path) File "/opt/conda/lib/python3.7/ctypes/__init__.py", line 364, in __init__ self._handle = _dlopen(self._name, mode) OSError: /opt/conda/lib/python3.7/site-packages/nvidia/cublas/lib/libcublas.so.11: undefined symbol: cublasLtHSHMatmulAlgoInit, version libcublasLt.so.11

Can anyone help me out?

Sorry to have bothered you. I found that if I do
pip install OpenNMT-py==3.0
everything works fine.