본문 바로가기
Development/etc

[Code Compare]Ubuntu에서 beyond compare, meld 설치

by shuka 2021. 9. 27.
728x90
728x90

1. 텍스트를 비교하기 위한 프로그램

코드, model inference 결과, 문서 등의 여러 텍스트들을 비교하기 위한 프로그램으로 여러 가지가 있을 수 있지만, 내가 주로 사용해 왔던 프로그램으로는 beyond compare와 meld라는 프로그램이 있다.

 

 

2. beyond compare 설치 방법

https://www.scootersoftware.com/download.php

 

Download Beyond Compare Free Trial

 

www.scootersoftware.com

 

위의 링크에 들어가면 os별로 설치 파일을 다운로드 할 수 있고, wget으로 버전만 알면 다운 받고 설치할 수 있다.

 

wget https://www.scootersoftware.com/bcompare-4.4.0.25886_amd64.deb
sudo apt-get update
sudo apt-get install gdebi-core
sudo gdebi bcompare-4.4.0.25886_amd64.deb

 

그런데 beyond compare의 경우 30일이 지나면 "Trial mode error"라고 뜨면서 제품키를 구매하라는 메세지가 뜬다.

 

그래서 요즘은 무료로 사용할 수 있는 meld를 사용한다.

 

 

3. meld 설치 방법

내가 알고 있는 meld 설치 방법은 devel 다운로드 후 설치와 apt-get로 설치 두 가지가 있다.

 

1)Devel 를 이용한 meld 설치

https://meldmerge.org/

 

Meld

What is Meld? Meld is a visual diff and merge tool targeted at developers. Meld helps you compare files, directories, and version controlled projects. It provides two- and three-way comparison of both files and directories, and has support for many popular

meldmerge.org

 

홈페이지에 들어가서 Devel로 다운로드하고 setup.py로 설치한다.

 

sudo python setup.py install

 

2)apt-get를 이용한 meld 설치

sudo apt-get install meld
728x90
반응형

댓글