Created
April 27, 2011 02:19
-
-
Save mrpollo/943612 to your computer and use it in GitHub Desktop.
How To install PV:
This file contains hidden or 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
#If you’re on Debian or Debian based system such as Ubuntu do the following: | |
sudo aptitude install pv | |
#If you’re on Fedora or Fedora based system such as CentOS do: | |
sudo yum install pv | |
#If you’re on Slackware, go to pv homepage, download the pv-version.tar.gz archive and do: | |
tar -zxf pv-version.tar.gz | |
cd pv-version | |
./configure && sudo make install | |
#If you’re a Mac user: | |
sudo port install pv | |
#If you’re OpenSolaris user: | |
pfexec pkg install pv | |
#If you’re a Windows user on Cygwin: | |
./configure | |
export DESTDIR=/cygdrive/c/cygwin | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment