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.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ Features
74
74
Installation
75
75
============
76
76
77
-
Currently, ``pyfastx`` supports Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11. Make sure you have installed both `pip <https://pip.pypa.io/en/stable/installing/>`_ and Python before starting.
77
+
Currently, ``pyfastx`` supports Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. Make sure you have installed both `pip <https://pip.pypa.io/en/stable/installing/>`_ and Python before starting.
78
78
79
79
You can install ``pyfastx`` via the Python Package Index (PyPI)
Copy file name to clipboardExpand all lines: docs/installation.rst
+9-18Lines changed: 9 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ You can install pyfastx via the Python Package Index (PyPI) (**recommended**) or
5
5
6
6
Make sure you have installed both `pip <https://pip.pypa.io/en/stable/installing/>`_ and Python before starting.
7
7
8
-
Currently, ``pyfastx`` supports Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 and can work on Windows, Linux, MacOS.
8
+
Currently, ``pyfastx`` supports Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14 and can work on Windows, Linux, MacOS.
9
9
10
10
Install from PyPI
11
11
-----------------
@@ -23,34 +23,25 @@ Update pyfastx using ``pip``
23
23
Install from source
24
24
-------------------
25
25
26
-
``pyfastx`` depends on `zlib <https://zlib.net/>`_ and `sqlite3 <https://www.sqlite.org/index.html>`_. If you want to compile and install pyfastx from source code. First, you should install zlib and sqlite3.
26
+
``pyfastx`` depends on `zlib <https://zlib.net/>`_, `sqlite3 <https://www.sqlite.org/index.html>`_ and `indexed_gzip <https://github.com/pauldmccarthy/indexed_gzip>`_. In latest version, pyfastx will automatically download these libraries to build.
27
27
28
-
On Centos
29
28
30
-
::
31
-
32
-
yum install zlib-devel
33
-
yum install sqlite-devel
34
-
35
-
On Ubuntu
29
+
First, clone pyfastx using ``git`` or download latest `release <https://github.com/lmdu/pyfastx/releases>`_:
36
30
37
31
::
38
32
39
-
apt install zlib1g-dev
40
-
apt install libsqlite3-dev
41
-
42
-
On Windows and MacOS, it will automatically download zlib and sqlite3 library to build.
43
-
33
+
git clone https://github.com/lmdu/pyfastx.git
44
34
45
-
Second, clone pyfastx using ``git`` or download latest `release <https://github.com/lmdu/pyfastx/releases>`_:
35
+
Then, ``cd`` to the pyfastx folder and run install command:
46
36
47
37
::
48
38
49
-
git clone https://github.com/lmdu/pyfastx.git
39
+
cd pyfastx
40
+
python setup.py install
50
41
51
-
Then, ``cd`` to the pyfastx folder and run install command:
0 commit comments