Skip to content

Commit ede1daf

Browse files
committed
fix install page
1 parent 843a3f0 commit ede1daf

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

docs/source/installation.rst

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Install GFO from PyPI using pip:
2020
2121
pip install gradient-free-optimizers
2222
23-
This installs GFO with its minimal dependencies (only NumPy), which is sufficient
24-
for all core optimization algorithms.
23+
This installs GFO with its core dependencies (NumPy, SciPy, and pandas), which is
24+
sufficient for all core optimization algorithms.
2525

2626

2727
Installation with Extras
@@ -46,7 +46,7 @@ For additional functionality, you can install optional extras:
4646
pip install gradient-free-optimizers[sklearn]
4747
4848
Adds ``scikit-learn`` for surrogate models used in Bayesian Optimization,
49-
TPE, Forest Optimizer, and Ensemble Optimizer.
49+
TPE, and Forest Optimizer.
5050

5151
.. tab-item:: Full Installation
5252

@@ -94,9 +94,11 @@ Gradient-Free-Optimizers requires the following packages (automatically installe
9494

9595
* - Package
9696
- Purpose
97-
* - ``numpy >= 1.18``
97+
* - ``numpy >= 1.18.1, < 3.0.0``
9898
- Numerical operations, array handling, and search space definition
99-
* - ``pandas >= 1.0``
99+
* - ``scipy < 2.0.0``
100+
- Scientific computing and statistical functions
101+
* - ``pandas < 3.0.0``
100102
- Search data storage and manipulation
101103

102104
Optional Dependencies
@@ -111,7 +113,7 @@ Optional Dependencies
111113
* - ``tqdm >= 4.48`` (extra: ``progress``)
112114
- Progress bars during optimization
113115
* - ``scikit-learn >= 0.23`` (extra: ``sklearn``)
114-
- Surrogate models for SMBO algorithms (Bayesian, TPE, Forest, Ensemble)
116+
- Surrogate models for SMBO algorithms (Bayesian, TPE, Forest)
115117

116118

117119
----

docs/source/troubleshooting/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Import Errors
5757

5858
.. code-block:: bash
5959
60-
# For SMBO algorithms (Bayesian, TPE, Forest, Ensemble)
60+
# For SMBO algorithms (Bayesian, TPE, Forest)
6161
pip install gradient-free-optimizers[sklearn]
6262
6363
# For progress bars

0 commit comments

Comments
 (0)