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
|
=======
Install
=======
This section covers the basics of how to download and install
`DXchange <https://github.com/data-exchange/dxchange>`_.
.. contents:: Contents:
:local:
Installing from source
======================
Clone the `DXchange <https://github.com/data-exchange/dxchange>`_
from `GitHub <https://github.com>`_ repository::
git clone https://github.com/data-exchange/dxchange.git dxchange
then::
cd dxchange
pip install .
DXchange is dependent on other libraries, listed in the requirements.txt and
meta.yaml files.
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 conda-forge dxchange
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 conda-forge dxchange
For some more information about using Conda, please refer to the
`docs <http://conda.pydata.org/docs>`__.
|