We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
./configure --prefix=${HOME} make make install
pip install --user ${PROGRAM} # or ./setup.py install --user
http://stackoverflow.com/a/13021677
gem install --user-install ${PROGRAM}
Home directory installs are a built-in fallback. #win
Use local::lib. Debian/Ubuntu users can sudo apt-get install liblocal-lib-perl first.
sudo apt-get install liblocal-lib-perl
perl -Mlocal::lib >> ~/.bashrc # then regular cpan commands
cmake -DCMAKE_INSTALL_PREFIX:PATH=$HOME && cmake --build . --target install
Adapted from: http://stackoverflow.com/a/6003937
Please feel free to add to this page.