-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
62 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "0.0.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,43 @@ | ||
# Installation | ||
|
||
For the latest stable release install | ||
In Bofire we have several optional depencies. | ||
|
||
### Domain and Optimization Algorithms | ||
|
||
To install Bofire with optimization tools you can use | ||
``` | ||
pip install bofire[optimization] | ||
``` | ||
This will also install [Botorch](https://botorch.org/) that depends on [Pytorch](https://pytorch.org/). | ||
### Design of Experiments | ||
|
||
BoFire has functionality to create D-optimal experimental designs via the `doe` module. This module is depends on | ||
[Cyipopt](https://cyipopt.readthedocs.io/en/stable/). A comfortable way to install Cyipopt and the dependencies is via | ||
``` | ||
conda install -c conda-forge cyipopt | ||
``` | ||
You have to install Cyipopt manually. | ||
### Just Domain | ||
|
||
If you just want a data structure that represents the domain of an optimization problem you can | ||
``` | ||
pip install bofire | ||
``` | ||
To live at head you can use | ||
|
||
### Cheminformatics | ||
|
||
Some features related to molecules and their representation depend on [Rdkit](https://www.rdkit.org/). | ||
``` | ||
pip install bofire[optimization,cheminfo] | ||
``` | ||
|
||
### Development Installation | ||
If you want to [contribute](CONTRIBUTING.md) to BoFire, you might want to install in editable mode including the test dependencies. | ||
After cloning the repository via | ||
``` | ||
git clone https://github.com/experimental-design/bofire.git | ||
``` | ||
and cd `bofire`, you can proceed with | ||
``` | ||
pip install git+https://github.com/experimental-design/bofire.git | ||
pip install -e .[optimization,cheminfo,docs,testing] | ||
``` |