从中可以找到gr-中间醇。“cmake”的结果:类似于:
Policy CMP0026 is not set: Disallow use of the LOCATION target property
...
get_target_property() called with non-existent target
可能会有一些问题,导致‘制造’失败。我不太清楚。
-- The CXX compiler identification is GNU 5.4.0
-- The C compiler identification is GNU 5.4.0
-- Check for working C
我刚在我的ubuntu12.04上安装了gnuradio。我尝试运行一个简单的wbfm接收程序,这是我从网上获得的。在尝试执行程序时,我会得到以下错误:
Traceback (most recent call last):
File "/home/me/Downloads/uhd_wbfm_receive.py", line 10, in <module>
from gnuradio import analog
File "/usr/lib/python2.7/dist-packages/gnuradio/analog/__init__.py
我正在用.构建一个典型的Linux应用程序。
$ cd /path_to_source
$ ./configure --prefix=/usr/local
$ make
$ make install
当然,配置步骤会生成Makefile。在我的示例中,Makefile中有一个SWIG_PL_INCLUDES变量,我修改它以设置正确的值。我这么做..。
$ cd /path_to_source
$ ./configure --prefix=/usr/local
$ Update SWIG_PL_INCLUDES in generated Makefile
$ make
$ make instal
我做这个工作已经有一段时间了,我觉得我在转圈。我正在尝试使用dpkg安装oresat星跟踪器,它依赖于swig 4.0.1或更高版本。Apt没有更新版本的swig,所以我手动安装了swig。我已经证实了它的正确安装
debian@beaglebone:~$ swig -version
SWIG Version 4.0.2
Compiled with g++ [armv7l-unknown-linux-gnueabihf]
Configured options: +pcre
Please see http://www.swig.org for re
我正在尝试在raspberryPi2上使用gnuradio中的osmosdr源代码。使用来自git的osmosdr,我得到了
Traceback (most recent call last):
File "urmet.py", line 20, in <module>
import osmosdr
File "/usr/local/lib/python2.7/dist-packages/osmosdr/__init__.py", line 26, in <module>
from osmosdr_swig imp
我试图在virtualenv中安装带有pip的M2Crypto库,但是我就是不能让它工作,
我已经做了sudo apt-get install python-dev和sudo apt-et install python-m2crypto,它们已经在系统中了
我还尝试过安装pip install pyopenssl
这是我回溯的最后几行(太长了):
SWIG/_m2crypto_wrap.c: In function ‘dsa_get_g’:
SWIG/_m2crypto_wrap.c:6220:1: warning: control reaches end of non-void func
我安装了opencv版本3.4.4,安装了cntk,导入到google,给出了以下结果。
import cntk as C
/usr/local/lib/python3.6/dist-packages/cntk/cntk_py_init.py:56: UserWarning: Unsupported Linux distribution (ubuntu-18.04). CNTK supports Ubuntu 16.04 and above, only.
warnings.warn('Unsupported Linux distribution (%s-%s). CNT
我使用的是Cent OS,SWIG 1.3,并且我已经测试过从SWIG示例编译Java示例。它由以下部分组成:
example.c
/* A global variable */
double Foo = 3.0;
/* Compute the greatest common divisor of positive integers */
int gcd(int x, int y) {
int g;
g = y;
while (x > 0) {
g = x;
x = y % x;
y = g;
}
return g;
}
example.i
我有一个在人工神经网络上由Jeff创建的代码,我喜欢在一些照片中运行一些数据的训练和测试,但是每当我运行他的程序时,我就会得到这个错误。
Traceback (most recent call last):
File "run_ann.py", line 3, in <module>
import ann
File "/media/405A4CA95A4C9E12/Users/User/Desktop/me3-4/ann/src/linux/python/ann.py",
line 26, in <module>
_ann