@@ -16,8 +16,8 @@ Documentation can be found in the user guide (see Documentation directory or in
1616
1717The following software is required before installing StochPy (see user guide for more details):
1818
19- - Python 2.6+ or Python 3.4+
20- - [ NumPy 1.x +] ( http://www.numpy.org )
19+ - Python 3.9+ and Python 2.6+ (obsolete)
20+ - [ NumPy 1.21 +] ( http://www.numpy.org )
2121- [ SciPy] ( https://scipy.org )
2222- [ Matplotlib] ( https://matplotlib.org ) (optional)
2323- [ libsbml] ( http://sbml.org/Software/libSBML ) (optional)
@@ -26,16 +26,16 @@ The following software is required before installing StochPy (see user guide for
2626
2727Install StochPy and dependencies with PIP using the following command (in your StochPy Python virtual environment):
2828``` bash
29- pip install scipy matplotlib python-libsbml jedi==0.17.2 ipython stochpy
29+ pip install numpy scipy matplotlib python-libsbml ipython stochpy
3030```
3131
3232If you are using Anaconda, create a custom conda environment for StochPy, for example:
3333``` bash
34- conda create -n " stochpy39 " -c sbmlteam python=3.9 pip scipy matplotlib sympy ipython
34+ conda create -n " stochpy10 " python=3.10 pip numpy scipy matplotlib sympy ipython
3535```
3636activate your new environment, install StochPy (only required once per environment) and start ipython.
3737``` bash
38- conda activate stochpy39
38+ conda activate stochpy10
3939pip install stochpy
4040ipython
4141
@@ -45,7 +45,7 @@ ipython
4545
4646In the directory where you downloaded/cloned the StochPy source, for example, the git main branch:
4747``` bash
48- sudo python setup.py install
48+ pip install .
4949```
5050
5151### Windows
@@ -59,6 +59,8 @@ You can run `ipython` and import `stochpy`:
5959``` py
6060import stochpy
6161smod = stochpy.SSA()
62+ # Run the demo
63+ stochpy.Demo()
6264```
6365
6466### Basic Simulation with the Direct method
@@ -193,14 +195,15 @@ Centrum Wiskunde en Informatica, Amsterdam, Netherlands
193195VU University, Amsterdam, Netherlands
194196
195197> e-mail: tmd200@users.sourceforge.net
198+ > e-mail: b.g.olivier@vu.nl
196199
197200## Publication
198201
199202StochPy: A Comprehensive, User-Friendly Tool for Simulating Stochastic Biological Processes
200203http://dx.doi.org/10.1371/journal.pone.0079345
201204
202205## Licence
203- Copyright (c) 2011-2021 , Timo R. Maarleveld, Brett G. Olivier, and Frank J. Bruggeman
206+ Copyright (c) 2011-2025 , Timo R. Maarleveld, Brett G. Olivier, and Frank J. Bruggeman
204207Vrije Universiteit Amsterdam. All rights reserved.
205208
206209StochPy is open source software distributed under the BSD 3-Clause License see LICENSE file for more details.
0 commit comments