Neha Kulkarni
Neha Kulkarni
Download the pyFM project After installing Visual C++ Build Tools, do the following: Remove the parameter : libraries=["m"] in the setup.py file and save it Run the setup.py using :...
@tiancaipipi110 Please make sure that your setup.py file looks like this: setup( maintainer='Corey Lynch', name='pyfm', packages=find_packages(), url='https://github.com/coreylynch/pyFM', cmdclass = {'build_ext': build_ext}, ext_modules = [Extension("pyfm_fast", ["pyfm_fast.pyx"], include_dirs=[numpy.get_include()])] ) We just need...
Download the pyFM project After installing Visual C++ Build Tools, do the following: Remove the parameter : libraries=["m"] in the setup.py file and save it Run the setup.py using :...