Skip to content

Instantly share code, notes, and snippets.

@volkancakil
Last active October 12, 2022 14:59
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save volkancakil/411f5233aa7f000b1b2cb5790ec4b267 to your computer and use it in GitHub Desktop.
Save volkancakil/411f5233aa7f000b1b2cb5790ec4b267 to your computer and use it in GitHub Desktop.
How to install GNU Global 6.5.6 on Ubuntu 16.10
#!/bin/bash
# instGlobal.sh
echo "instGlobal.sh ...."
echo "install package for GNU global..."
sudo apt-get update
sudo apt-get -y install curl
sudo apt-get -y install wget
sudo apt-get -y install ncurses-dev
sudo apt-get -y install exuberant-ctags
sudo apt-get -y install python
CUR=`pwd`
echo "install GNU global..."
wget http://tamacom.com/global/global-6.5.6.tar.gz
tar zxvf global-6.5.6.tar.gz
cd global-6.5.6
./configure
make
sudo make install
cd $CUR
echo "install pip..."
curl -kL https://bootstrap.pypa.io/get-pip.py | sudo python
echo "install pygments..."
sudo pip install pygments
echo "$0 done."
exit 0
@tmkasun
Copy link

tmkasun commented May 16, 2019

Thanks , This works for latest http://tamacom.com/global/global-6.6.3.tar.gz as well 😄

@shahid31091
Copy link

shahid31091 commented Jun 15, 2020

Possible to install locally without sudo access?

@danielhndz
Copy link

6.6.5 Ok!

@lipracer
Copy link

ubuntu16.04 work well. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment