Library issues using tensorflow object detection api

When I run tenforflow object detection API I get the following prompt multiple times:

libtinfo.so.6: no version information available (required by /bin/bash)

I’m not sure what it means.

I’m using Ubuntu 22.04
cudatoolkit: 11.3.1 (tried with 11.2.2)
cudnn: 8.2.1 (tried with 8.1.0.77)
tensorflow: 2.11

Any help would be appreciated!

Derek

I ended up solving this by downloading ncurses from conda-forge and setting it as the default channel. Here are the instructions for doing this:

conda config --add channels conda-forge
conda config --set channel_priority strict
conda install -c conda-forge ncurses
conda search ncurses --channel conda-forge

Hope this saves someone some time!

DB