Showing posts with label Linux Mint Install Application. Show all posts
Showing posts with label Linux Mint Install Application. Show all posts

Monday, August 14, 2017

Julia - Language - Install Juno Text Editor

To Install Juno text editor, first install Atom text editor, created by GitHub. Download the Debian package of Atom from the link: https://atom.io/

Download Atom text editor:

$ wget https://atom-installer.github.com/v1.19.2/atom-amd64.deb
--2017-08-21 17:26:25--  https://atom-installer.github.com/v1.19.2/atom-amd64.deb
Resolving atom-installer.github.com (atom-installer.github.com)... 151.101.0.133, 151.101.64.133, 151.101.128.133, ...
Connecting to atom-installer.github.com (atom-installer.github.com)|151.101.0.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 83638506 (80M) [application/octet-stream]
Saving to: ‘atom-amd64.deb’

atom-amd64.deb                                     100%[================================================================================================================>]  79.76M  1.87MB/s    in 43s     

2017-08-21 17:27:10 (1.85 MB/s) - ‘atom-amd64.deb’ saved [83638506/83638506]

$

Now install using the dpkg utility of debian / ubuntu / linux mint:

$ sudo dpkg -i atom-amd64.deb 
Selecting previously unselected package atom.
(Reading database ... 174639 files and directories currently installed.)
Preparing to unpack atom-amd64.deb ...
Unpacking atom (1.19.0) ...
dpkg: dependency problems prevent configuration of atom:
 atom depends on git; however:
  Package git is not installed.

dpkg: error processing package atom (--install):
 dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.10.1-0ubuntu2) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for mime-support (3.54ubuntu1.1) ...
Errors were encountered while processing:
 atom

We can see that there were some errors due to missing dependencies. Hence to resolve them, let us run:

 $ sudo apt-get install -f

This will install atom. To confirm, let us run the following commands:

$ which atom
/usr/bin/atom

$ atom --version
Atom    : 1.19.0
Electron: 1.6.9
Chrome  : 56.0.2924.87
Node    : 7.4.0


In Atom, go to Settings (Ctrl ,, or Cmd , on OS X) and go to the "Install" panel.

Type uber-juno into the search box and hit enter. Click the install button on the package of the same name.

Atom will then set up Juno for you, installing the required Atom and Julia packages. Once the setup is done you're good to go!





Saturday, June 24, 2017

Ubuntu - Install Application - Beyond Compare



Beyond Compare is a file comparing Utility. To Install it in Linux Mint / Ubuntu:

Step 1: Download Beyond Compare from website:

$ wget http://www.scootersoftware.com/bcompare-3.3.13.18981_i386.deb
--2017-06-24 06:59:47--  http://www.scootersoftware.com/bcompare-3.3.13.18981_i386.deb
Resolving www.scootersoftware.com (www.scootersoftware.com)... 72.32.90.251
Connecting to www.scootersoftware.com (www.scootersoftware.com)|72.32.90.251|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 10447378 (10.0M) [application/octet-stream]
Saving to: ‘bcompare-3.3.13.18981_i386.deb’

100%[==============================================================================================================================>] 1,04,47,378 1.96MB/s   in 13s    

2017-06-24 07:00:04 (766 KB/s) - ‘bcompare-3.3.13.18981_i386.deb’ saved [10447378/10447378]

/opt/softwares $ 


Step 2: Install it using dpkg:

$ sudo dpkg -i bcompare-3.3.13.18981_i386.deb 
Selecting previously unselected package bcompare.
(Reading database ... 166740 files and directories currently installed.)
Preparing to unpack bcompare-3.3.13.18981_i386.deb ...
Unpacking bcompare (3.3.13-18981) ...
Setting up bcompare (3.3.13-18981) ...
OK
Processing triggers for shared-mime-info (1.2-0ubuntu3) ...
Processing triggers for gnome-menus (3.10.1-0ubuntu2) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for mime-support (3.54ubuntu1.1) ...
 /opt/softwares $ 

Step 3: Check for installation:

/opt/softwares $ which bcompare
/usr/bin/bcompare
 /opt/softwares $ 

Step 4: You can now launch it, either by searching it in the menu. Or, you can launch it from terminal by typing - bcompare at the prompt:

/opt/softwares $ bcompare
/opt/softwares $ 

Beyond Compare is now installed in Linux Mint / Ubuntu.