In Ubuntu 20.04 (and maybe in other distributions) we see this error when running bowtie2.
error while loading shared libraries: libtbb.so.2: cannot open shared object file: No such file or directory
Following the solution here, we figured out that installing libtbb-dev solves this issue. On Ubuntu 20.04, running the following does the installation:
sudo apt-get install libtbb-dev
In Ubuntu 20.04 (and maybe in other distributions) we see this error when running bowtie2.
error while loading shared libraries: libtbb.so.2: cannot open shared object file: No such file or directoryFollowing the solution here, we figured out that installing
libtbb-devsolves this issue. On Ubuntu 20.04, running the following does the installation: