X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=docs%2Finstall.rst;h=d7ac13d032b736e5515323ebeb46182625971de5;hb=be0c6ca4d0b550b53d0d4c5081e4002a7e81d4bf;hp=d950de1670dccbdb870b5c6bf41add4fe657bb22;hpb=935a32f3ad46cc24169afc635ffcd30ad00d5a98;p=m_librarian.git diff --git a/docs/install.rst b/docs/install.rst index d950de1..d7ac13d 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -6,21 +6,21 @@ System-wide :: - sudo pip install --trusted-host phdru.name --find-links=http://phdru.name/Software/Python/ m_librarian + sudo pip install m_librarian User mode --------- :: - pip install --trusted-host phdru.name --find-links=http://phdru.name/Software/Python/ --user m_librarian + pip install --user m_librarian Virtual envs ------------ :: - pip install --trusted-host phdru.name --find-links=http://phdru.name/Software/Python/ m_librarian + pip install m_librarian Progress bar ============ @@ -30,6 +30,23 @@ library ``m_lib``. You can install the library separately using, e.g., command ``pip install m_lib``. Or you can install the library with ``m_librarian``: ``pip install m_librarian[pbar]``. +Other extras +============ + +``pip install m_librarian[web]`` installs libraries needed for web-ui. + +``pip install m_librarian[wx]`` installs a library needed for wx GUI +(``wxPython``). Should work for non-Linux platforms, but for Linux +``wxPython`` should be installed separately either using system package +manager, or from https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ , +or using ``conda``:: + + conda create -n wx27 python=2.7 wxpython + conda activate wx27 + +Python 2.7 is used here just an example, the librarin works with any +Python version, 2.7 and 3.4+. + Installation from sources =========================