File: installation.rst

package info (click to toggle)
pdf2docx 0.5.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 16,876 kB
  • sloc: python: 6,843; makefile: 82; sh: 9
file content (52 lines) | stat: -rw-r--r-- 1,000 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
.. include:: header.rst

Installation
====================

``pdf2docx`` can be installed from either PyPI or the source code.


Install from PyPI
-------------------

Type the command below for a new installation::

  $ pip install pdf2docx

Or, upgrade this library with::

  $ pip install --upgrade pdf2docx


Install from source code remotely
--------------------------------------

Install ``pdf2docx`` directly from the ``master`` branch::

  $ pip install git+git://github.com/dothinking/pdf2docx.git@master --upgrade

.. note::
  In this way, ``pdf2docx`` might have a higher version than PyPI, which is not released yet.


Install from source code locally
---------------------------------------

Clone or download `pdf2docx <https://github.com/dothinking/pdf2docx>`_, navigate to the root directory and run::

  $ python setup.py install 

Or, install it in developing mode::

  $ python setup.py develop


Uninstall
--------------

::

  $ pip uninstall pdf2docx


.. include:: footer.rst