@@ -55,39 +55,37 @@ Adding the the core packages (minimal) to an existing CONDA environment:
5555
5656` conda install -c bgoli -c sbmlteam sip pyqt python-libsbml xlrd xlwt cbmpy biopython `
5757
58- ### New Python 2 CONDA environment (recommended)
5958
60- Ubuntu (Linux-64 )
59+ ### Setting up a Python 3 CONDA environment (recommended )
6160
62- `conda env create -f conda_env_build_ubuntu.yml
63- conda activate metadraft2
64- ./run.sh`
61+ Creating the environment, this should work on all operating systems. Open a terminal and type:
6562
66- Windows 10 (Win-64)
63+ ``` shell
64+ conda env create -f environment.yml
65+ conda activate metadraft3
66+ ```
6767
68- `conda env create -f conda_env_build_win.yml
69- conda activate metadraft2
70- ./runwin.bat`
68+ One Windows run the system test (optional) and start MetaDraft:
7169
72- ### New Python 3 CONDA environment
70+ ``` shell
71+ runwin.bat
72+ ```
7373
74- Windows 10 (Win-64)
74+ One Linux run the system test (optional) and start MetaDraft:
7575
76- `conda env create -f conda_env_build_win_py3.yml
77- conda activate metadraft2
78- ./runwin.bat `
76+ ``` shell
77+ sh ./run.sh
78+ `` `
7979
8080## Using PyPI to install Python dependencies
8181
8282### For Python 3
8383
8484Using PyPI it is only possible to use Python 3. You can either install the packages useing the requirements.txt file (recommended):
8585
86- ` pip install -r requirements.txt `
87-
88- or individually install the core packages (minimal):
89-
90- ` pip install sip PyQt5 python-libsbml xlrd xlwt cbmpy biopython `
86+ ``` shell
87+ pip install -r requirements.txt
88+ ```
9189
9290## Software citation
9391
@@ -99,8 +97,5 @@ Please cite this software if you use it (the author(s) enthusiasm to carry on ma
9997 Zenodo. http://doi.org/10.5281/zenodo.2398336
10098```
10199
102-
103-
104-
105100Brett G. Olivier (b.g.olivier@vu.nl )
106101
0 commit comments