Can't Install Pyzmp For Python -- Dependencies
I am having trouble installing the PyZMP dependency for iPython. I have tried a number of things such as using pip/brew, but ended up installing the package manually using this ans
Solution 1:
You have to use:
import zmq
instead of
import pyzmq
have a look at the official Examples at https://github.com/zeromq/pyzmq/blob/master/examples/
Solution 2:
I also struggled getting IPython (Jupyter) installed, especially with the pyzmq dependency. In the end, I found a method that worked for me (in Ubuntu) with much less hassle:
$ sudo apt-get install libtool pkg-config build-essential autoconf automake python-dev
$ sudo apt-get build-dep matplotlib
$ sudo pip install matplotlib
$ sudo pip install "ipython[all]"
Post a Comment for "Can't Install Pyzmp For Python -- Dependencies"