File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,13 @@ A web application for the ensemble is available at https://chebifier.hastingslab
6
6
7
7
## Installation
8
8
9
- Note: ` chebai-graph ` and its dependencies cannot be installed automatically. To install it, follow
10
- the instructions in the [ chebai-graph repository] ( https://github.com/ChEB-AI/python-chebai-graph ) . Other dependencies are installed automatically.
9
+ Not all models can be installed automatically at the moment:
10
+ - ` chebai-graph ` and its dependencies. To install them, follow
11
+ the instructions in the [ chebai-graph repository] ( https://github.com/ChEB-AI/python-chebai-graph ) .
12
+ - ` chemlog-extra ` can be installed with ` pip install git+https://github.com/ChEB-AI/chemlog-extra.git `
13
+ - The automatically installed version of ` c3p ` may not work under Windows. If you want to run chebifier on Windows, we
14
+ recommend using this forked version: ` pip install git+https://github.com/sfluegel05/c3p.git `
15
+
11
16
12
17
You can get the package from PyPI:
13
18
``` bash
Original file line number Diff line number Diff line change @@ -25,9 +25,11 @@ dependencies = [
25
25
" rdkit" ,
26
26
" chebai>=1.0.1" ,
27
27
" chemlog>=1.0.4" ,
28
- " chemlog_extra @ git+https://github.com/ChEB-AI/chemlog-extra.git" ,
28
+ # pypi does not support git dependencies
29
+ # "chemlog_extra @ git+https://github.com/ChEB-AI/chemlog-extra.git",
30
+ " c3p"
29
31
# forked version of c3p is windows-compatible
30
- " c3p @ git+https://github.com/sfluegel05/c3p.git"
32
+ # "c3p @ git+https://github.com/sfluegel05/c3p.git"
31
33
]
32
34
33
35
You can’t perform that action at this time.
0 commit comments