Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
fix installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicBboy committed Jan 7, 2018
1 parent c0c392d commit 9099e27
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,18 @@ You can install the latest released version with `conda` or `pip`.

```
# conda
conda install themis-ml
conda install -c cosmicbboy themis-ml
```

If you install with pip, you'll need to install scikit-learn, numpy, and pandas
with either pip or conda. Version requirements:

- numpy (>= 1.9.0)
- scikit-learn (>= 0.19.1)
- pandas (>= 0.22.0)

```
#pip
# pip
pip install themis-ml
```

Expand Down
11 changes: 10 additions & 1 deletion doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,16 @@ Python 2.7 and 3.6 are supported.
.. code-block:: python
# conda
conda install themis-ml
conda install -c cosmicbboy themis-ml
If you install with pip, you'll need to install scikit-learn, numpy, and pandas
with either pip or conda. Version requirements:

- numpy (>= 1.9.0)
- scikit-learn (>= 0.19.1)
- pandas (>= 0.22.0)

.. code-block:: python
# pip
pip install themis-ml
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup

setup(
name="themis-ml",
Expand Down Expand Up @@ -26,9 +26,9 @@
},
include_package_data=True,
install_requires=[
"numpy",
"pandas",
"scikit-learn >= 0.19.1",
"numpy >= 1.9.0",
"pandas >= 0.22.0",
"pathlib2",
"scikit-learn"
]
)

0 comments on commit 9099e27

Please sign in to comment.