• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux ERROR when try start ENGINE

Ots24

New Member
Joined
Jan 22, 2023
Messages
5
Reaction score
0
error while loading shared libraries: libboost_thread.so.1.55.0: cannot open shared object file: No such file or directory


sudo apt-get install libboost_thread.so.1.55.0
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package libboost_thread.so.1.55.0
E: Couldn't find any package by glob 'libboost_thread.so.1.55.0'
E: Couldn't find any package by regex 'libboost_thread.so.1.55.0'

Any good advice??
 
It seems you're missing the specific version of the Boost library (libboost_thread.so.1.55.0). You can try the following:

Install the available version of Boost:

sudo apt-get updatesudo apt-get install libboost-thread-dev
 
Back
Top