Installation¶
Prerequisites¶
- Python 3.5 or later (http://www.python.org/)
- See the
setup.pyfile for python package dependencies.
Using pip¶
The easiest way to install this package and it’s dependencies is directly from the Python Package Index:
pip3 install docpath
Using Sources¶
Alternatively, you can clone the docpath repository, and install the package from there:
git clone https://bitbucket.org/libateq/docpath
cd docpath
python3 setup.py install
Other Information¶
You may need administrator/root privileges to perform the installation, as the install commands will by default attempt to install the package to the system wide Python site-packages directory on your system.
For advanced options, please refer to the easy_install and/or the distutils documentation: