linux下快速启动的albert编译安装

安装依赖:

sudo apt-get install mesa-common-dev
sudo apt-get install libgl1-mesa-dev libglu1-mesa-dev

 

sudo apt install libmuparser-dev

 

 

git clone --recursive https://github.com/albertlauncher/albert.git
mkdir albert-build
cd albert-build
cmake ../albert -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug
make
sudo make install

 

启动,出错:

while loading shared libraries: libQt5Charts.so.5: cannot open shared object file

找到本地的libQt5Charts.so文件的位置

在/etc/ld.so.conf.d/下面新建一个qt5.conf,里面写入你的路径

sudo vim etc/ld.so.conf.d/qt5.conf 

比如我的位置为:

/home/taru/anaconda3/lib/

sudo ldconfig -v

参考:https://blog.csdn.net/CAIYUNFREEDOM/java/article/details/102497798

 

官方安装指南:

https://albertlauncher.github.io/docs/installing/

官方使用指南:

https://albertlauncher.github.io/docs/using/

posted @ 2020-06-14 16:46  重积德  阅读(103)  评论(0编辑  收藏  举报