Skip to content

Commit

Permalink
Quick fix to this error
Browse files Browse the repository at this point in the history
 ERROR: Command errored out with exit status 1:
     command: /usr/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-ea4nrfka/configspace/setup.py'"'"'; __file__='"'"'/tmp/pip-install-ea4nrfka/configspace/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-pip-egg-info-hws29z6r
         cwd: /tmp/pip-install-ea4nrfka/configspace/
    Complete output (5 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-ea4nrfka/configspace/setup.py", line 4, in <module>
        import numpy as np
    ModuleNotFoundError: No module named 'numpy'
    ----------------------------------------
  • Loading branch information
jim-schwoebel authored Oct 16, 2020
1 parent 2089827 commit 9d0082f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ RUN cd /usr/local/opensmile-2.3.0/ && \
RUN chmod 777 /usr/local/opensmile-2.3.0
RUN export PATH=/usr/local/opensmile-2.3.0/inst/bin:$PATH

# install requirements
# install requirements
RUN pip3 install numpy==1.18.2
RUN pip3 install -r requirements.txt

# order matters here for OpenCV and a few of the dependencies below
Expand Down

0 comments on commit 9d0082f

Please sign in to comment.