Skip to content

Install zlib1g, libncurses #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,27 @@ SBMLSolver installation instructions
====================================


1. First build the SBMLSolver dependencies, these are in a separate git repo. You
1. Check to see if zlib1g is installed. If it is not installed you will need to install it by

```
sudo apt-get install zlib1g-dev
```

2. Check to see if libncurses is installed. If it is not installed you will need to install it by

```
sudo apt-get install libncurses-dev
```

3. First build the SBMLSolver dependencies, these are in a separate git repo. You
will install this into its own directory, reccomended to install to $HOME/local

<https://github.com/AndySomogyi/sbmlsolver_dep>


2. grab this repo from git, assuming you'll call it '$HOME/src/sbmlsolver'.
4. grab this repo from git, assuming you'll call it '$HOME/src/sbmlsolver'.

3. Create a build directory, ```$HOME/src/sbmlsolver_build```, go to this dir and
5. Create a build directory, ```$HOME/src/sbmlsolver_build```, go to this dir and
run ccmake,

```
Expand All @@ -30,7 +42,7 @@ SBMLSolver installation instructions
ccmake -G"Xcode" ../sbmlsolver
```

4. In the ccmake gui, select ```$HOME/local``` (or wherever you installed the dependencies to)
6. In the ccmake gui, select ```$HOME/local``` (or wherever you installed the dependencies to)
as the value for the ``` SBMLSOLVER_DEP_DIR``` build option.

Hit 'c' a few times to configure, and 'g' to generate the project file.
Expand Down