AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题 / 1145688
Accepted
nickhansenrf
nickhansenrf
Asked: 2019-05-24 08:44:40 +0800 CST2019-05-24 08:44:40 +0800 CST 2019-05-24 08:44:40 +0800 CST

管理 GNU Radio 的依赖项以从源代码编译

  • 772

Ettus 研究提供了18.04的大量依赖项列表,这些依赖项几乎适用于从源代码编译 gnu radio。

cmake 给出以下配置错误:

-- Python checking for PyQt5 - found
-- Checking for module 'Qt5Qwt6'
--   No package 'Qt5Qwt6' found
-- QWT Version: 6.1.3
-- Found Qwt: /usr/lib/libqwt.so  

但是,根据我拥有的软件包(似乎每个可能的版本......也许太多了)我应该拥有它需要的东西。

apt-cache search qwt
libqwt-dev - Qt widgets library for technical applications (development, qt4)
libqwt-doc - Qt widgets library for technical applications (documentation)
libqwt-headers - Qt widgets library for technical applications (header files)
libqwt-qt5-6 - Qt widgets library for technical applications (runtime, qt5)
libqwt-qt5-dev - Qt widgets library for technical applications (development, qt5)
libqwt5-doc - Qt widgets library for technical applications (documentation)
libqwt5-qt4 - Qt4 widgets library for technical applications (runtime)
libqwt5-qt4-dev - Qt4 widgets library for technical applications (development)
libqwt6abi1 - Qt widgets library for technical applications (runtime, qt4)
libqwtmathml-dev - Text Engine for Qwt (development, qt4)
libqwtmathml-qt5-6 - Text Engine for Qwt (runtime, qt5)
libqwtmathml-qt5-dev - Text Engine for Qwt (development, qt5)
libqwtmathml6abi1 - Text Engine for Qwt (runtime, qt4)
libqwtplot3d-doc - 3D plotting library based on Qt/OpenGL (documentation)
libqwtplot3d-qt5-0 - 3D plotting library based on Qt5/OpenGL (runtime)
libqwtplot3d-qt5-dev - 3D plotting library based on Qt5/OpenGL (development)
python-guiqwt - efficient 2D data-plotting library - Python 2
python-guiqwt-doc - efficient 2D data-plotting library - Documentation
python-qwt - Pure Python implementation of Qwt - Python 2
python-qwt5-doc - Python Qwt5 technical widget library, documentation and examples
python-qwt5-qt4 - Python version of the Qwt5 technical widget library
python3-guiqwt - efficient 2D data-plotting library - Python 3
python3-qwt - Pure Python implementation of Qwt - Python 3
python-qwt-doc - Pure Python implementation of Qwt - Documentation

如何编辑 cmake 列表以正确找到它正在寻找的内容?

python compiling dependencies cmake gnuradio
  • 2 2 个回答
  • 1610 Views

2 个回答

  • Voted
  1. Best Answer
    earthmeLon
    2019-05-24T08:51:21+08:002019-05-24T08:51:21+08:00

    在网上搜索No package 'Qt5Qwt6' found后,我发现gnuradio问题跟踪器显示了这个问题,并推荐了一个解决方案:

    因为在 arch 上需要记录-DQWT_LIBRARIES=/usr/lib/libqwt.so才能使 gnuradion cmake 脚本启用gr-qtgui。

    在这里,arch指的是 ArchLinux,但这并不意味着这个解决方案是孤立于 ArchLinux 并且可以很好地为您工作。

    • 3
  2. N0rbert
    2019-05-24T09:06:59+08:002019-05-24T09:06:59+08:00

    我会推荐使用 APT 驱动的方法。GNU Radio与Ubuntu上的插件一起打包。首先开始使用二进制包,如下所示:

    sudo apt-get install gnuradio
    

    它是通过编译打包的,编译需要构建时依赖。您可以通过以下操作获取它们:

    1. 打开软件和更新 ( software-properties-gtk) 并在此处启用源代码存储库
    2. 使用简单的命令安装构建依赖项:

      sudo apt-get build-dep gnuradio
      

      上面的命令将为 GNU Radio 3.7.11-10(如在 Ubuntu 18.04 LTS 中)安装构建时依赖项。这个版本在官方网站上不算太新(2018-07-15 的新闻包含 GNU Radio v3.7.13.4 Release 的公告)。

    3. 使用简单的命令从 Ubuntu 存储库获取 3.7.11-10 的 GNU Radio 源

      apt-get source gnuradio
      

      并根据需要修补/更改/更新它。

    • 1

相关问题

  • 有没有安装 Django 1.2.*(最新稳定版)的简单方法?

  • 如何让 .so 文件显示在包中?

  • 为 Python 应用程序设置构建系统

  • 为我的 PPA 创建包时遇到问题

  • 如何删除已卸载包的依赖项?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve