thanks a lot ! one more question ! how can I check which version of xml has been installed ?
Hello. To install antiSMASH in Debian Linux 8, I have installed following dependencies except two of them.
First, make sure you have the following antiSMASH dependencies installed:
- diamond (version 0.8.36 tested)
- fasttree (version 2.1.7 tested)
- glimmer (version 3.02 tested)
- GlimmerHMM (version 3.0.4 tested)
- hmmer2 (version 2.3.2 tested, append a 2 to all hmmer2 executables to avoid conflict with hmmer3 executable names, like hmmalign -> hmmalign2)
- hmmer3 (3.1b2 tested)
- mafft (version 7.271 tested)
- meme (version 4.11.2 tested. Version 4.11.4 changes output file formats, so don't use that.)
- muscle (version 3.8.31 tested)
- NCBI blast+ (version 2.2.31 tested)
- prodigal (version 2.6.1 tested)
- xml development headers (version 2.9.1 tested)
- xz development headers (version 5.1.1 tested)
- python (version 2.7.9 tested, any python 2.x >= python 2.6 should work)
- python-virtualenv (not needed, but highly recommended)
what I didn't install is 12 and 13. I don't understand what xml development headers means? so here are my question.
How can I install xml development headers (version 2.9.1) using sudo apt-get ? (if there is no way for install using sudo apt-get, where can I download it?)
1 answer
xml development header
should be https://askubuntu.com/questions/733169
sudo apt-get install libxml2-dev
xml2-config --version
2.9.3
xz development headers (version 5.1.1 tested)
In doubt, you can also query the APT cache for package descriptions.
$ apt search xz development files
Sorting... Done
Full Text Search... Done
devscripts/stable,now 2.17.6+deb9u1 amd64 [installed]
scripts to make the life of a Debian Package maintainer easier
libarchive-dev/stable 3.2.2-2 amd64
Multi-format archive and compression library (development files)
liblzma-dev/stable,now 5.2.2-1.2+b1 amd64 [installed]
XZ-format compression library - development files
So you need sudo apt install liblzma-dev for the XZ development headers.
And if you do not remember which version you installed: dpkg -l liblzma-dev.
Log in to answer this question.