You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-11Lines changed: 14 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
17
17
18
18
Author: Brett G. Olivier (@bgoli)
19
19
20
-
# About
20
+
##About
21
21
PySCeS CBMPy (http://cbmpy.sourceforge.net) is a new platform for constraint
22
22
based modelling and analysis. It has been designed using principles developed
23
23
in the PySCeS simulation software project: usability, flexibility and accessibility.
@@ -40,36 +40,39 @@ For more information on the development and use of CBMPy (https://github.com/Sys
40
40
CBMPy has been tested on Windows 7 and 8.1, 10, Mac OSX and Ubuntu Linux 12.04, 14.04, 16.04, 20.04.
41
41
CBMPy is currently developed on Python 3.7 and Python 3.6 or newer is highly recommended
42
42
43
-
# Install
44
-
The best way to get the basic CBMPy running is to install with Pip or create an Anaconda environment. CBMPy is developed on GitHub (https://github.com/SystemsBioinformatics/cbmpy)
43
+
##Install
44
+
The best way to get the basic CBMPy running is to install from **PyPI** or create an Anaconda environment. CBMPy is developed on GitHub (https://github.com/SystemsBioinformatics/cbmpy)
45
45
46
-
## Install with pip using requirements.txt
46
+
###Install with pip using requirements.txt
47
47
From a terrminal or command prompt try:
48
48
49
49
`pip install -r requirements.txt`
50
50
51
-
## Install by creating an Anaconda environment using environment.yml
52
-
From a terrminal or command prompt try:
51
+
### New experimental PyPI install method.
52
+
`pip install cbmpy[sbml]`
53
+
54
+
### Install by creating an Anaconda environment using environment.yml
55
+
From a terminal or command prompt try:
53
56
54
57
`conda env create -f=environment.yml`
55
58
56
-
This creates an environment **cbmpy** that can be accessed from the command line using `conda activate cbmpy3`
59
+
This creates an environment **cbmpy3** that can be accessed from the command line using `conda activate cbmpy3`
57
60
58
-
## Check the basic installation
61
+
###Check the basic installation
59
62
To check you installation follow the installation try the following in a Python shell:
60
63
61
64
```
62
65
import cbmpy
63
66
cmod = cbmpy.readSBML3FBC('cbmpy_test_core')
64
67
cbmpy.doFBA(cmod)
65
68
```
66
-
# Updating CBMPy
69
+
##Updating CBMPy
67
70
Once you have installed CBMPy it can be easily upgraded.
0 commit comments