Installation¶
RealSeries is still under development. Before the first stable release, you can install the RealSeries from source.
If you use RealSeries temporarily, you may clone the code from GitHub repository and add it to your Python path:
git clone https://github.com/xchuwenbo/realseries.git cd RealSeries # change current work directory to ./RealSeries python >>> import sys,os >>> sys.path.append(os.getcwd()) # add ./RealSeries to sys.path >>> import realseries >>> from realseries.models.iforest import IForest
Alternatively, you can install it:
git clone https://github.com/xchuwenbo/realseries.git # clone cd RealSeries pip install . python >>> import realseries >>> from realseries.models.iforest import IForest