debian 7 中的 Pyjam

debian 7 中的 Pyjam

我正在尝试制作安装包 python Pyajam

我尝试安装 pip,但收到错误 4Suite-XML 包

$ pip install Pyajam

Installing collected packages: pyajam, 4Suite-XML
Running setup.py install for pyajam

Running setup.py install for 4Suite-XML
Usage:
-c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
-c --help [cmd1 cmd2 ...]
-c cmd --help
-c --help-commands
-c --help-packages

error: option --single-version-externally-managed not recognized
Complete output from command /usr/bin/python -c "import   
XML/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file_'exec'))"     install --single-version-externally-managed --record /tmp/pip-YlpamB-   record/install-  record.txt:
Usage:

-c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
-c --help [cmd1 cmd2 ...]
-c cmd --help
-c --help-commands
-c --help-packages

error: option --single-version-externally-managed not recognized

安装4Suite-XML包出现错误,依赖pyajam

我尝试仅安装 4Suite-XML

pip install 4Suite-XML 

返回同样的错误

最后我尝试使用apt安装

apt-get install python-pyajam
apt-get install python-4Suite-XML

无法找到包 python-pyajam 或 python-4Suite-XML

答案1

我解决了这个问题。编译包

$ wget http://pypi.python.org/packages/source/4/4Suite-XML/4Suite-XML-1.0.2.tar.bz2

$ tar -xvvf 4Suite-XML-1.0.2.tar.bz2

$ cd 4Suite-XML-1.0.2

$ ./setup.py install


------------------------------------------------------------------------
4Suite-XML version 1.0.2 has been successfully installed!

Python modules (including C extensions)
/usr/local/lib/python2.7/dist-packages

Executable scripts (for PATH environment variable)
/usr/local/bin

Examples, demos and other miscellaneous data files
/usr/local/share/4Suite

Developer files (regression tests)
/usr/local/lib/4Suite

Text documentation
/usr/local/share/doc/4Suite

HTML documentation
/usr/local/share/doc/4Suite/html

谢谢大家=]

相关内容