forked from etetoolkit/ete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
72 lines (43 loc) · 1.83 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Optional dependencies
* python-qt4 is required to visualize and render tree images.
* python-numpy is only required by ClusterTree instances but highly recommended for general usage too
* python-lxml is only required to use NexML and PhyloXML tree formats.
Installing in GNU/Linux
===============================
Dependencies
----------------
+ Ubuntu, Mint and other Debian based distributions (APT)
apt-get install python-numpy python-qt4 python-lxml
+ Centos, Fedora, etc (YUM)
yum install PyQt4.x86_64 numpy.x86_64 python-lxml.x86_64
Install
-----------
+ Install/upgrade ETE using PIP
pip install --upgrade ete2
+ Install/upgrade ETE using easy_install
easy_install -U ete2
+ Install/upgrade ETE manually.
Download latest version from https://pypi.python.org/pypi/ete2
tar -zxf ete2-x.x.x.tar.gz
cd ete2-x.x.x/
python setup.py install
Installing in OS X
======================
MacPorts
------------
This is the recommended way of installing ETE under OS X, as it will will handle all dependencies automatically.
+ Install Xcode Mac Developer tools (required by MacPorts) and XQuartz
+ Install MacPorts: http://www.macports.org/install.php
+ Install ETE from the MacPorts repository
sudo port install py27-ete2
Note 1: Make sure that you are always using the correct version of python and
pip. This is, use the Python distribution installed by MacPorts, typically at
/opt/local/bin/python2.7.
Note 2: The new ete build command depends on external tools that cannot be
automatically handled in OS X yet. The use of ete-build under OS X is currently
not tested and therefore not recommended for production environments Native
Native
---------
A basic installation of ETE can also be achieved by using the default OS X
python version. Note that some features such as tree visualization and ete-build
will not be available.