Skip to content

Commit

Permalink
Move project directory from scikits.learn to sklearn
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Pedregosa committed Sep 2, 2011
1 parent cca1fcf commit fd0d3b8
Show file tree
Hide file tree
Showing 450 changed files with 10,208 additions and 12,091 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ inplace:
$(PYTHON) setup.py build_ext -i

test-code: in
$(NOSETESTS) -s scikits/learn
$(NOSETESTS) -s sklearn
test-doc:
$(NOSETESTS) -s --with-doctest --doctest-tests --doctest-extension=rst \
--doctest-fixtures=_fixture doc/modules/
Expand Down
18 changes: 9 additions & 9 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ This is usually the fastest way to install the latest stable
release. If you have pip or easy_install, you can install or update
with the command::

pip install -U scikits.learn
pip install -U sklearn

or::

easy_install -U scikits.learn
easy_install -U sklearn

for easy_install. Note that you might need root privileges to run
these commands.
Expand Down Expand Up @@ -145,10 +145,10 @@ version of scikit-learn:
Debian and derivatives (Ubuntu)
-------------------------------

The Debian package is named python-scikits-learn and can be install
The Debian package is named python-sklearn and can be install
using the following commands with root privileges::

apt-get install python-scikits-learn
apt-get install python-sklearn


Python(x, y)
Expand All @@ -170,17 +170,17 @@ version.
Macports
--------

The macport's package is named py26-scikits-learn and can be installed
The macport's package is named py26-sklearn and can be installed
by typing the following command::

sudo port install py26-scikits-learn
sudo port install py26-sklearn

NetBSD
------

scikit-learn is available via `pkgsrc-wip <http:https://pkgsrc-wip.sourceforge.net/>`_:

http:https://pkgsrc.se/wip/py-scikits_learn
http:https://pkgsrc.se/wip/py-sklearn

.. _install_bleeding_edge:

Expand All @@ -200,7 +200,7 @@ Testing requires having the `nose
installation, the package can be tested by executing *from outside* the
source directory::

python -c "import scikits.learn as skl; skl.test()"
python -c "import sklearn as skl; skl.test()"

This should give you a lot of output (and some warnings) but
eventually should finish with the a text similar to::
Expand All @@ -220,7 +220,7 @@ source directory::

Test can now be run using nosetest::

nosetests scikits/learn/
nosetests sklearn/

If you are running the deveopment version, this is automated in the
commands `make in` and `make test`.
Expand Down
Loading

0 comments on commit fd0d3b8

Please sign in to comment.