我目前正在尝试设置 pjsip,它是一个小型 sip 项目的 python 包装器。我按照这里的说明进行操作:http: //trac.pjsip.org/repos/wiki/Python_SIP/Build_Install基本上可以分解为:
- 从 svn 查看 pjsip
- 编译 pjsip
- 编译python模块
所有需要的命令都是
$ cd your-pjsip-root-dir
$ ./configure && make dep && make
$ cd pjsip-apps/src/python
$ sudo make
pjsip 和 python 包装器编译没有任何错误。但是一旦我想测试它:
XXXX@WXXXXX:~$ python
Python 2.7.3 (default, Jan 2 2013, 16:53:07)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pjsua
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named pjsua
>>>
做什么?
(操作系统是 debian wheezy,编译和 python-dev 等的所有依赖项都已安装)