I am posting this for reference in case someone else encounters the same issue
I am freshly setting up a virtualenv for development (github master version, my OS is fedora) and I did
pip install --upgrade pip
pip install -r develop-requirements.txt
I got this error:
Collecting pymatbridge (from -r develop-requirements.txt (line 11))
Using cached pymatbridge-0.5.2.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-TmZKMy/pymatbridge/setup.py", line 16, in <module>
from pymatbridge.messenger.make import get_messenger_dir
File "pymatbridge/__init__.py", line 1, in <module>
from .pymatbridge import *
File "pymatbridge/pymatbridge.py", line 28, in <module>
import zmq
ImportError: No module named zmq
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-TmZKMy/pymatbridge/
after a few unsuccessful web searches I got it working by doing
pip install zmq
pip install numpy
pip install -r develop-requirements.txt
no idea why!
cheers
antonella