harfang3d / dogfight-sandbox-hg1

Air to air combat game, created in Python 3 using HARFANG 3D.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

liblua53.so: cannot open shared object file: No such file or directory

muraatozbek opened this issue · comments

Getting error when run the main.py
How can i solve it?
import harfang as hg
File "/home/ozbek/.local/lib/python3.5/site-packages/harfang/init.py", line 1, in
from .harfang import *
ImportError: liblua53.so: cannot open shared object file: No such file or directory

commented

Add liblua53.so from the /home/ozbek/.local/lib/python3.5/site-packages/harfang/ folder to /usr/local/lib
here is the step to do that go to below directory
sudo cp /home/ozbek/.local/lib/python3.5/site-packages/harfang/liblua53.so /usr/local/lib/liblua53.so
and run sudo ldconfig this will solve your issue.

Thanks for the help, @cudanexus :)