# l1_logreg Installation Example # # In this example, suppose one is running Linux on a PC with an Intel/AMD processor # (for other systems, download the corresponding binary in step 1). # # 1. Download the file l1_logreg-0.8.1-i686-pc-linux-gnu.tar.gz from the l1_logreg website at # http://www.stanford.edu/~boyd/l1_logreg/index.html#install # # 2. Place the file in a directory of your choice. For purposes of this example, # suppose this directory is called Software within your home directory (~/Software). # Go to this directory and decompress the file, as follows: # Go to the ~/Software directory cd ~/Software # Decompress the file tar -xzf l1_logreg-0.8.1-i686-pc-linux-gnu.tar.gz # # 3. Create a softlink to the l1_logreg_classify binary within your ~/bin directory, # so that l1_logreg_classify can be called from any location, as follows: # If no ~/bin directory exists, create it if [ ! -d ~/bin ] then mkdir ~/bin fi # Go to the ~/bin directory cd ~/bin # Create a softlink to l1_logreg_classify ln -s ~/Software/l1_logreg-0.8.1-i686-pc-linux-gnu/l1_logreg_classify l1_logreg_classify