Last active
October 12, 2022 14:59
-
-
Save volkancakil/411f5233aa7f000b1b2cb5790ec4b267 to your computer and use it in GitHub Desktop.
How to install GNU Global 6.5.6 on Ubuntu 16.10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
6.6.5 Ok!
ubuntu16.04 work well. Thanks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Possible to install locally without sudo access?