forked from ocelma/python-recsys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
37 lines (25 loc) · 886 Bytes
/
README
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
=============
python-recsys
=============
A python library for implementing a recommender system.
==================
INSTALLATION NOTES
==================
1) Dependencies
python-recsys is build on top of Divisi2, with csc-pysparse (Divisi2 also requires NumPy, and uses Networkx).
python-recsys also requires SciPy.
To install the dependencies do something like this (Ubuntu):
sudo apt-get install python-scipy
sudo apt-get install python-numpy
sudo pip install csc-pysparse networkx divisi2
# If you don't have pip installed then do:
# sudo easy_install csc-pysparse
# sudo easy_install networkx
# sudo easy_install divisi2
2) Download
Download python-recsys from github: https://github.com/ocelma/python-recsys
3) Install
tar xvfz python-recsys.tar.gz
cd python-recsys
sudo python setup.py install
..and you're all set! (hopefully)