Skip to content

Commit b199976

Browse files
authored
Merge pull request #35 from dengzq1234/main
update new way to install ete4 manually
2 parents f465699 + b98a740 commit b199976

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -112,28 +112,28 @@ Check other tutorial scripts
112112

113113
### Manual installation
114114
#### Install ETE v4
115-
To install ETE you can follow these steps:
116-
- Download this repository (https://github.com/etetoolkit/ete/releases)
117-
- Build and install ete4 from the repository's root directory with following command:
118-
```
119-
wget https://github.com/etetoolkit/ete/archive/refs/tags/4.1.0-beta.tar.gz
120-
tar -zxvf 4.1.0-beta.tar.gz
121-
cd ete-4.1.0-beta/
122-
python setup.py install
123-
```
124-
or
125-
```
126-
pip install https://github.com/etetoolkit/ete/archive/refs/tags/4.1.0-beta.tar.gz
127-
```
115+
Quick way
116+
```
117+
pip install https://github.com/etetoolkit/ete/archive/ete4.zip
118+
```
119+
For local development
120+
To install ETE in a local directory to help with the development, you can:
121+
122+
- Clone this repository (git clone https://github.com/etetoolkit/ete.git)
123+
- Install dependecies
124+
- If you are using conda: `conda install -c conda-forge cython bottle brotli numpy pyqt`
125+
- Otherwise, you can install them with `pip install <dependencies>`
126+
- Build and install ete4 from the repository's root directory: `pip install -e .`
127+
128128
(In Linux there may be some cases where the gcc library must be installed, which can be done with `conda install -c conda-forge gcc_linux-64`)
129129

130130
#### Install TreeProfiler
131131
Install dependencies
132132
```
133133
# install BioPython, selenium, scipy via conda
134-
conda install -c conda-forge biopython selenium scipy
134+
conda install -c conda-forge biopython selenium scipy matplotlib
135135
# or pip
136-
pip install biopython selenium scipy
136+
pip install biopython selenium scipy matplotlib
137137
```
138138

139139
Install TreeProfiler

0 commit comments

Comments
 (0)