aletheia7
aletheia7
If preform a vim `:rew` after the source disappears, the source reappears.
go zmq4 needs the zeromq shared library. Linux needs the /usr/local/lib/libzmq.so and Windows needs a *.dll . The above message indicates the library cannot be found. Either the shared library...
After you completed `configure`, `make`, `make install`, did you run `ldconfig` as root?
1. Do you see /usr/local/include/zmq.h? 2. Do you see /usr/local/lib/pkgconfig/libzmq.pc? 3. Are the paths correct in libzmq.pc? try `git clone https://github.com/zeromq/zeromq4-1`
Be sure to perform `git checkout -b v4.1.5` after cloning https://github.com/zeromq/zeromq4-1
Must be root for `make install`
Do you have pkg-config installed? `apt-get install pkg-config`
Do you have the Ubuntu libzmq\* package installed? ``` dpkg-query -l libzmq\* ```
Those are old libraries. Do you want to remove them? If you remove them, other things might also be removed. What version of Ubuntu? `lsb_release -a` `apt-get remove libzmq-dev:amd64 libzmq:amd64`
Run the apt-get remove above. Run ldconfig. Try configure, make, make install, ldconfig again.