flaviovdf / fpmc

Implementation of the Factorizing Personalized Markov Chains for Next-Basket Recommendation
BSD 3-Clause "New" or "Revised" License
67 stars 25 forks source link

Which .so files will produce after excuting setup.py? #1

Open huHHhhuhu opened 8 years ago

huHHhhuhu commented 8 years ago

Dear Flavio,

Thank you for providing this package ! However, I encountered problems in installation. (on Linux) So, I'm wondering which .so files will produce after excuting setup.py ?

Appreciate !

Sincerely yours, David

flaviovdf commented 8 years ago

Hi,

I'm not sure I understand your question. Do you want to know which .so files are created? If so, why?

huHHhhuhu commented 8 years ago

Hi Flavio,

Yes, I want to know which .so files will be created after excuting setup.py. Because the automatic compilation procedure on my Linux will fail and I want to create these .so manually.

This is my problem report: https://docs.google.com/document/d/1HK5cUr6E6fI7PNTpLAMO12mSdV1J-xoQ-KRl_MQGU-I/edit?usp=sharing

flaviovdf commented 8 years ago

First, I fixed the GCC issue. I was using gcc-5 because of my mac env.

Second, I see your problem, sorry about it. It is related to the project structure.

Instead of:

sudo python setup.py install

Just use:

make

This way, the main script will work.

Flavio

On Tue, Mar 8, 2016 at 3:51 AM, David notifications@github.com wrote:

Hi Flavio,

Yes, I want to know which .so files will be created after excuting setup.py. Because the automatic compilation procedure on my Linux will fail and I want to create these .so manually.

This is my problem report:

https://docs.google.com/document/d/1HK5cUr6E6fI7PNTpLAMO12mSdV1J-xoQ-KRl_MQGU-I/edit

— Reply to this email directly or view it on GitHub https://github.com/flaviovdf/fpmc/issues/1#issuecomment-193631933.

huHHhhuhu commented 8 years ago

Hi flaviovdf,

It works and thanks a lot!