While trying to use the library installed from source you encounter error: ``RuntimeError: CUDA error: no kernel image is available for execution on the device``
This error indicates that you actually have pytorch version which does not have CUDA enabled. To solve that you should refer to https://pytorch.org/get-started/previous-versions/.
While running/installing the library, you encounter error: ``ImportError: libGL.so.1: cannot open shared object file: No such file or directory``
You should download the following libraries (often already installed in basic distribution of Unix):
apt-get install ffmpeg libsm6 libxext6 -y
Source: StackOverflow
While trying to install poetry you get an error: ``ModuleNotFoundError: No module named 'distutils.cmd'``
It helps to install the following:
apt-get install python3-distutils
Source: StackOverflow
Error while running ``poetry install``: ``Hash for torch (1.12.1) from archive``
This error might occur when you are in the process of installing and abort the process before it finishes. What you need to do is actually remove all the caches which will run the clean install:
rm -rf ~/.cache/pypoetry
Helpful source: StackOverflow
Error while running ``poetry install``
Sometimes the error while running poetry install persists. Then it might be useful to diable parallel connections in poetry and do everything in single thread. To do so you need to run the following:
poetry config installer.parallel false
Helful source: StackOverflow