Skip to content

Instantly share code, notes, and snippets.

@rcotrina94
Last active July 8, 2018 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rcotrina94/a046f78dc9d1d444c42fdc2c27cd7d99 to your computer and use it in GitHub Desktop.
Save rcotrina94/a046f78dc9d1d444c42fdc2c27cd7d99 to your computer and use it in GitHub Desktop.
Instalando PyFBA en Ubuntu 18.04

INSTALAR LIBRERÍAS EN EL SISTEMA

sudo apt-get install libglpk-dev glpk-utils glpk-doc libglpk40 libgmp10 libgmpxx4ldbl

INSTALAR LIBRERÍAS DE PYTHON

mkdir ~/pyfba

Modulo PyGLPK

cd ~/pyfba
git clone git@github.com:bradfordboyle/pyglpk.git
cd pyglpk
make
make install

Instalar ModelSEEDDatabase

cd ~/pyfba
git clone git@github.com:ModelSEED/ModelSEEDDatabase.git

Requisitos PyFBA

pip install python-libsbml-experimental
pip install lxml
pip install beautifulsoup4

Instalar PyFBA

export ModelSEEDDatabase=~/pyfba/ModelSEEDDatabase
export PYFBA_MEDIA_DIR=~/pyfba/marco/PyFBA/media
pip install pyfba
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment