You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting to install by following the documentation's instructions, after installing all the mentioned dependencies with conda, results in the following error:
(base) user@server:~$ pip install -e git+https://github.com/abahde/DeepOBS.git@master#egg=DeepOBS
Obtaining DeepOBS from git+https://github.com/abahde/DeepOBS.git@master#egg=DeepOBS
Cloning https://github.com/abahde/DeepOBS.git (to revision master) to ./src/deepobs
Running command git clone -q https://github.com/abahde/DeepOBS.git /users/user/src/deepobs
ERROR: Complete output from command python setup.py egg_info:
ERROR: Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/users/user/src/deepobs/setup.py", line 5, in <module>
from deepobs import __version__
File "/users/user/src/deepobs/deepobs/__init__.py", line 5, in <module>
from . import analyzer
File "/users/user/src/deepobs/deepobs/analyzer/__init__.py", line 2, in <module>
from . import analyze
File "/users/user/src/deepobs/deepobs/analyzer/analyze.py", line 12, in <module>
from ..tuner.tuner_utils import generate_tuning_summary
File "/users/user/src/deepobs/deepobs/tuner/__init__.py", line 4, in <module>
from .bayesian import GP
File "/users/user/src/deepobs/deepobs/tuner/bayesian.py", line 3, in <module>
from bayes_opt import UtilityFunction
ModuleNotFoundError: No module named 'bayes_opt'
----------------------------------------
ERROR: Command "python setup.py egg_info" failed with error code 1 in /users/user/src/deepobs/
Is this bayes_opt package really necessary? It seems a bit tangential to the package's purpose (or at most optional).
Edit: It turns out that bayesian-optimization has relatively few requirements so this is not a big issue; perhaps just the docs need updating.
As an aside, it might be possible to suggest a single conda command that installs everything: conda install -c conda-forge seaborn matplotlib2tikz bayesian-optimization.
The text was updated successfully, but these errors were encountered:
Attempting to install by following the documentation's instructions, after installing all the mentioned dependencies with conda, results in the following error:
Is this bayes_opt package really necessary? It seems a bit tangential to the package's purpose (or at most optional).
Edit: It turns out that
bayesian-optimization
has relatively few requirements so this is not a big issue; perhaps just the docs need updating.As an aside, it might be possible to suggest a single conda command that installs everything:
conda install -c conda-forge seaborn matplotlib2tikz bayesian-optimization
.The text was updated successfully, but these errors were encountered: