-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Glances offline installation
nicolargo edited this page Dec 16, 2014
·
11 revisions
If you want to install Glances on a offline computer, you can follow this procedure.
On an online computer:
- pip install basket
- basket init
- basket download glances
- tar zcvf glances-offline.tgz .basket/.
Then copy the glances-offline.tgz file to your offline computer and:
- cd ~
- tar zxvf glances-offline.tgz
- sudo mkdir /etc/glances
- sudo touch /etc/glances/glances.conf
Install the Glances version with easy_install or pip:
- sudo easy_install -f ~/.basket -H None glances
or
- sudo pip install --no-index -f file://~/.basket glances
Edit your /etc/glances.glances.conf file (sample here: https://raw.githubusercontent.com/nicolargo/glances/master/conf/glances.conf)
Thanks to Damien Baty for the Basket project.