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

pyajamに依存する4Suite-XMLパッケージをインストールするときにエラーが発生しました。

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

みんなありがとう=]

おすすめ記事