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
{{ message }}
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
when doing a bulk install to a raw environment similar to this:
pip install -r requirments.txt
The installation of GPyOpt fails here the trace:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/private/var/folders/ww/j0q_jynx6hl_9sr0pzkjlyj40000gp/T/pip-build-divwyilr/GPyOpt/setup.py", line 6, in <module>
from GPyOpt.__version__ import __version__
File "/private/var/folders/ww/j0q_jynx6hl_9sr0pzkjlyj40000gp/T/pip-build-divwyilr/GPyOpt/GPyOpt/__init__.py", line 7, in <module>
from GPyOpt.core.task.space import Design_space
File "/private/var/folders/ww/j0q_jynx6hl_9sr0pzkjlyj40000gp/T/pip-build-divwyilr/GPyOpt/GPyOpt/core/__init__.py", line 4, in <module>
from .bo import BO
File "/private/var/folders/ww/j0q_jynx6hl_9sr0pzkjlyj40000gp/T/pip-build-divwyilr/GPyOpt/GPyOpt/core/bo.py", line 6, in <module>
import numpy as np
ModuleNotFoundError: No module named 'numpy'
Even if requirments.txt have a numpy on it, since is not yet installed the setup.py cannot be open and therefore it breaks.
The text was updated successfully, but these errors were encountered:
mabodo
pushed a commit
to mabodo/GPyOpt
that referenced
this issue
Jan 2, 2018
when doing a bulk install to a raw environment similar to this:
pip install -r requirments.txt
The installation of GPyOpt fails here the trace:
Even if requirments.txt have a numpy on it, since is not yet installed the setup.py cannot be open and therefore it breaks.
The text was updated successfully, but these errors were encountered: