Changes between Version 38 and Version 39 of VirtualEnv


Ignore:
Timestamp:
Sep 2, 2010, 9:13:56 PM (16 years ago)
Author:
Darren Weber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VirtualEnv

    v38 v39  
    8888${CHIMERA}/bin/easy_install pylint
    8989${CHIMERA}/bin/easy_install pyflakes
     90}}}
     91
     92=== A bash script to install setup tools and virtualenv ===
     93
     94{{{
     95#!/bin/bash
     96# Default Chimera install path
     97CHIMERA="${HOME}/src/Chimera64-daily"
     98# Optional input parameter for Chimera install path
     99if [ $1 ]; then
     100        CHIMERA=$1
     101fi
     102# Test the existence of the $CHIMERA install path
     103if [ -d $CHIMERA ]; then
     104        echo "Chimera install path: ${CHIMERA}"
     105else
     106        echo "Invalid Chimera install path: ${CHIMERA}"
     107        exit 1
     108fi
     109export LD_LIBRARY_PATH=${CHIMERA}/lib
     110export PATH=${CHIMERA}/bin:${PATH}
     111mkdir -p ~/Downloads/
     112cd ~/Downloads/
     113rm -rf distribute*
     114curl -O http://python-distribute.org/distribute_setup.py
     115${CHIMERA}/bin/python2.7 distribute_setup.py
     116${CHIMERA}/bin/easy_install virtualenv
    90117}}}
    91118