如何设置 qwt 路径或环境变量

发布于 2024-10-24 04:18:28 字数 601 浏览 4 评论 0原文

我已经安装了 qwt 并将路径包含

INCLUDEPATH += /usr/local/qwt-6.0.0-rc5/include

LIBS += -L/usr/local/qwt-6.0.0-rc5/lib -lqwt

在我的配置文件中。

但是当我运行我的程序时,我收到错误

error while loading shared libraries: libqwt.so.6: cannot open shared object file: No such file or directory /home/cv/abc/abc exited with code 127

当使用终端时我设置了路径

export LD_LIBRARY_PATH=/usr/local/qwt-6.0.0-rc5

然后当我运行程序(使用界面的播放按钮)时我仍然收到错误。我不知道我错在哪里,我完全陷入困境。有人可以详细解释一下如何让 qwt 与 qt 一起工作吗?版本有什么区别吗?请详细解释一下我将非常感谢!

我使用的是ubuntu 10.04。

谢谢

I have installed qwt and include the path

INCLUDEPATH += /usr/local/qwt-6.0.0-rc5/include

LIBS += -L/usr/local/qwt-6.0.0-rc5/lib -lqwt

in my profile.

But when I run my program i get the error

error while loading shared libraries: libqwt.so.6: cannot open shared object file: No such file or directory /home/cv/abc/abc exited with code 127

When using terminal I set the path

export LD_LIBRARY_PATH=/usr/local/qwt-6.0.0-rc5

Then when I run the program (using the play button of the interface) I am still getting an error. I don't know where I'm wrong, I'm totally stuck. Can someone explain me in detail how to make qwt work with qt? Does version make any difference? Please explain me in detail I shall be very thank full!

I am using ubuntu 10.04.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

樱花坊 2024-10-31 04:18:28
  1. 可以通过ubuntu方式安装qwt

    aptitude install libqwt-dev

  2. 的方式安装 qwt

    此外,在 qtreator 中您还可以为您的项目指定运行环境。在左侧面板中选择“项目”,然后转到“运行设置”。

  1. You can install qwt in ubuntu way

    aptitude install libqwt-dev

  2. Also in qtreator you can specify Run Enviroment for your project. Select Projects in left panel and goto Run Setting.

熟人话多 2024-10-31 04:18:28

您是否将 Qwt 的路径添加到运行时链接器中?

/etc/ld.so.conf.d/ 中创建一个文件 qwt.conf,您只需在其中写入 [your-qwt-path]/ 的路径库

编辑:当然,您需要 root 权限才能在那里创建文件。另外,我忘了提及创建该文件后您将需要 sudo ldconfig 。最后,直到我重新启动系统后它才起作用。 :)

Did you add the path to Qwt to the run-time linker?

In /etc/ld.so.conf.d/ create a file qwt.conf where you just write the path to [your-qwt-path]/lib.

EDIT: You will, of course, need root privileges to create a file there. Also, I forgot to mention you will need to sudo ldconfig after creating that file. Lastly, it didn't work until I rebooted my system. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文