Changes between Version 3 and Version 4 of ChimeraPyPackages


Ignore:
Timestamp:
Jan 31, 2011, 1:24:06 PM (15 years ago)
Author:
Darren Weber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ChimeraPyPackages

    v3 v4  
    9797{{{
    9898#!/bin/bash
     99
    99100# Default Chimera install path
    100101CHIMERA="${HOME}/src/Chimera64-daily"
     
    117118curl -O http://python-distribute.org/distribute_setup.py
    118119${CHIMERA}/bin/python2.7 distribute_setup.py
     120${CHIMERA}/bin/easy_install pip
     121# Install optional packages
     122# readline requires libncurses
     123#sudo apt-get install ncurses-base ncurses-bin
     124#sudo apt-get install libncurses5-dev libncurses5-dbg
     125#sudo apt-get install libncursesw5-dev libncursesw5-dbg
     126# the ipython-readline support might not work with pip
     127${CHIMERA}/bin/easy_install readline ipython
     128${CHIMERA}/bin/pip install --upgrade bpython
     129${CHIMERA}/bin/pip install --upgrade pylint
     130${CHIMERA}/bin/pip install --upgrade pyflakes
     131${CHIMERA}/bin/pip install --upgrade rpyc
     132# Add Biopython
     133#${CHIMERA}/bin/pip install --upgrade biopython
     134${CHIMERA}/bin/easy_install -f http://biopython.org/DIST/ biopython
     135# Create a virtualenv
    119136${CHIMERA}/bin/easy_install virtualenv
     137${CHIMERA}/bin/virtualenv --clear --distribute "${CHIMERA}-virtualenv"
     138exit
    120139}}}