I am trying to install the meld(https://meldmerge.org/) package into Rhel6.5. I found an rpm on rpmbone(http://rpm.pbone.net/info_idpl_16047923_distro_redhatel6_com_meld-1.4.0-1.el6.rf.noarch.rpm.html).
I do not have root privileges and internet access. Thus I try to use 'https://github.com/mathieucaroff/user-yum.sh' this repository to install the meld into my home directory.
After I installed the rpm with the 'user-yum', the meld could not start because of the following error.
import meld.paths ImportError: No module named meld.paths
After I search the meld package, it requires python-site packages(https://mail.gnome.org/archives/meld-list/2016-May/msg00007.html). And it is not possible to install meld as python package on the user environment on Rhel6.5.
Therefore, Instead of installing as an rpm, creating a bundle with all the required files solves the problem.
Download bundle here!
Installation steps are:
tar -xf meld-1.6.0.tar.xz- Extract files.cd ~/meld-1.6.0/bin- Navigate the meld binary directory.echo "PATH=\"$(pwd):\$PATH\"" >> ~/.bashrc- Add current directory to path.source ~/.bashrc- Source the bashrc.meld- Run meld to verify.