I would like to install package LIBPMF whose official website is https://www.cs.utexas.edu/~rofuyu/libpmf/. The complete file of this package can be downloaded from here. After unzip, we have
Inside folder python
, we have
Inside README
, we have
Requirement
===========
- numpy
- scipy.sparse
Build
=====
type `make' in this directory
A Simple Example
================
Within the directoy python/, open a python shell.
>>> import libpmf
>>> import scipy.sparse as sparse
>>> A = sparse.rand(100,100,0.3)
>>> model = libpmf.train(A, '-k 10 -l 0.1')
starts!
m 100 n 100 k 10 nnz 3000
Wall-time: 0.0212269 secs
>>> model.keys() # model is a dictionary
['H', 'W']
My OS is Windows 10 Pro version 21H2 build 19044.1348
and my Anaconda is Anaconda3-2021.11-Windows-x86_64
.
I could not understand the instruction type "make" in this directory
. Could you please elaborate on how to install the package in this situation?