-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathINSTALL
More file actions
24 lines (14 loc) · 746 Bytes
/
Copy pathINSTALL
File metadata and controls
24 lines (14 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Installing Proteomics python library
====================================
You can use Python's setuptools to install the Proteomics python
library: download the archive (either .tar.gz or .zip), unpack it and
then do:
python setup.py install
in the unpacked directory.
Alternatively if you're using pip to manage your Python installations then you can do
pip install proteomics-<version>.tar.gz
You can also use pip to install directly from github using
pip install -e git+git://github.com/fls-bioinformatics-core/proteomics-python2.7-proteomics-lib
Any of these will make the `proteomics` library available for use in development.
(To find out more about Python pip see http://www.pip-installer.org/en/latest/index.html)
--