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
|
=======
Install
=======
This section covers the basics of how to download and install `DXfile <https://github.com/data-exchange/dxfile>`_.
.. contents:: Contents:
:local:
Installing from source
======================
Clone the `DXfile <https://github.com/data-exchange/dxfile>`_
from `GitHub <https://github.com>`_ repository::
git clone https://github.com/data-exchange/dxfile DXfile
then::
cd DXfile
python setup.py install
Installing from Conda/Binstar
=============================
First you must have `Conda <http://continuum.io/downloads>`_
installed, then open a terminal or a command prompt window and run::
conda install -c https://conda.anaconda.org/decarlof dxfile
Updating the installation
=========================
Data Management is an active project, so we suggest you update your installation
frequently. To update the installation run in your terminal::
conda update -c https://conda.anaconda.org/decarlof dxfile
For some more information about using Conda, please refer to the
`docs <http://conda.pydata.org/docs>`__.
|