Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 822 Bytes

install.rst

File metadata and controls

50 lines (30 loc) · 822 Bytes

Installation

Dependencies

iexfinance relies on:

For testing requirements, see :ref:`testing.dependencies`.

Installation

Latest stable release via pip (recommended):

$ pip install iexfinance

Latest development version:

$ pip install git+https://github.com/addisonlynch/iexfinance.git

or

$ git clone https://github.com/addisonlynch/iexfinance.git
$ cd iexfinance
$ pip install .

Note:

The use of virtualenv is recommended as below:

$ pip install virtualenv
$ virtualenv env
$ source env/bin/activate