0

Installing Caffe for Ubuntu 16.04 with this Install Guide.

When I run:

for req in $(cat requirements.txt); do pip install $req; done

I get:

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-SkgwMK/ipython/

What is it that I'm missing?

Stephen Rauch
  • 1,156
  • 6
  • 15
  • 21

1 Answers1

0

You have to install python-setuptools and python-dev first. To do so, open a terminal and type:

sudo apt-get install python-setuptools & python-dev -y

efthialex
  • 3,941