Friday 10 July 2015

Source file not compiled Dev C++ in Windows 8



Install new version of Dev c++. It works fine in Windows 8. It also supports 64 bit version.

Friday 6 March 2015

Installing ZeroMQ on Ubuntu

git clone git://github.com/jedisct1/libsodium.git
cd libsodium
./autogen.sh
./configure && make check
sudo make install
sudo ldconfig
cd ..

git clone git://github.com/zeromq/libzmq.git
cd libzmq
./autogen.sh
./configure && make check
sudo make install
sudo ldconfig
cd ..

git clone git://github.com/zeromq/czmq.git
cd czmq
./autogen.sh
./configure && make check
sudo make install
sudo ldconfig
cd ..
 
 
Then simulate the example on following link to verify it is installed correctly.
https://maddigitiser.wordpress.com/2013/05/02/installing-zeromq-on-ubuntu-13-04/
 
For more detail:
https://github.com/zeromq/czmq 

Tuesday 3 March 2015

How to install dnspython

1. Download dnspython package from this link: http://www.dnspython.org/ if you have python3x then download dnspython3x.
2. For Windows, this command should be run from a command prompt: 
setup.py install
3. You will be able to see a executable c:\python3x\Scripts\easy_install.exe
Now to install dnspython run this command on from command prompt: easy_install.exe dnspython
4. Copy dns folder from dnspython3x package and place it in  c:\python3x\Lib\
Good Luck :)