polylearn
                                
                                
                                
                                    polylearn copied to clipboard
                            
                            
                            
                        it can not be installed on windows computer
pls see error mesage Microsoft Windows [Version 10.0.14393] (c) 2016 Microsoft Corporation. All rights reserved.
e:\factirizatoin machine including FFM\code\polylearn_master_June6>python setup.py build
Appending polylearn.tests configuration to polylearn
Ignoring attempt to set 'name' (from 'polylearn' to 'polylearn.tests')
Appending polylearn configuration to
Ignoring attempt to set 'name' (from '' to 'polylearn')
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building extension "polylearn.loss_fast" sources
building extension "polylearn.cd_direct_fast" sources
building extension "polylearn.cd_linear_fast" sources
building extension "polylearn.cd_lifted_fast" sources
build_src: building npy-pkg config files
running build_py
creating build
creating build\lib.win-amd64-3.5
creating build\lib.win-amd64-3.5\polylearn
copying polylearn\base.py -> build\lib.win-amd64-3.5\polylearn
copying polylearn\factorization_machine.py -> build\lib.win-amd64-3.5\polylearn
copying polylearn\kernels.py -> build\lib.win-amd64-3.5\polylearn
copying polylearn\loss.py -> build\lib.win-amd64-3.5\polylearn
copying polylearn\polynomial_network.py -> build\lib.win-amd64-3.5\polylearn
copying polylearn\setup.py -> build\lib.win-amd64-3.5\polylearn
copying polylearn_init_.py -> build\lib.win-amd64-3.5\polylearn
creating build\lib.win-amd64-3.5\polylearn\tests
copying polylearn\tests\test_cd_linear.py -> build\lib.win-amd64-3.5\polylearn\tests
copying polylearn\tests\test_common.py -> build\lib.win-amd64-3.5\polylearn\tests
copying polylearn\tests\test_factorization_machine.py -> build\lib.win-amd64-3.5\polylearn\tests
copying polylearn\tests\test_kernels.py -> build\lib.win-amd64-3.5\polylearn\tests
copying polylearn\tests\test_polynomial_network.py -> build\lib.win-amd64-3.5\polylearn\tests
copying polylearn\tests_init_.py -> build\lib.win-amd64-3.5\polylearn\tests
running build_ext
Warning: Assuming default configuration (polylearn\tests/{setup_tests,setup}.py was not found)Traceback (most recent call last):
File "setup.py", line 64, in 
e:\factirizatoin machine including FFM\code\polylearn_master_June6>python setup.py install
Appending polylearn.tests configuration to polylearn
Ignoring attempt to set 'name' (from 'polylearn' to 'polylearn.tests')
Appending polylearn configuration to
Ignoring attempt to set 'name' (from '' to 'polylearn')
running install
running bdist_egg
running egg_info
running build_src
build_src
building extension "polylearn.loss_fast" sources
building extension "polylearn.cd_direct_fast" sources
building extension "polylearn.cd_linear_fast" sources
building extension "polylearn.cd_lifted_fast" sources
build_src: building npy-pkg config files
creating polylearn.egg-info
writing dependency_links to polylearn.egg-info\dependency_links.txt
writing polylearn.egg-info\PKG-INFO
writing top-level names to polylearn.egg-info\top_level.txt
writing manifest file 'polylearn.egg-info\SOURCES.txt'
reading manifest file 'polylearn.egg-info\SOURCES.txt'
writing manifest file 'polylearn.egg-info\SOURCES.txt'
installing library code to build\bdist.win-amd64\egg
running install_lib
running build_py
running build_ext
Warning: Assuming default configuration (polylearn\tests/{setup_tests,setup}.py was not found)Traceback (most recent call last):
File "setup.py", line 64, in 
e:\factirizatoin machine including FFM\code\polylearn_master_June6>
Polylearn is built and tested on windows via appveyor, and the library builds successfully, as you can see in the log here, for instance. For a quick fix, you can try to go to the "Artifacts" tab of that page, and download the binary wheel or exe installer from there, and just install that.
Your issue seems to be not with polylearn in particular, but with building cython extensions in general. You might want to take a look at this page on the Cython wiki.
Finally, you can also look at how the appveyor config script that we are using sets up the windows build. In particular, note that it removes cygwin, and it installs a specific older version of setuptools. This might be necessary in your case as well.
Hope this helps!
Try downloading this auto-generated installer from appveyor and let me know if it works.
this link Try downloading this auto-generated installer from appveyor and let me know if it works. is not working may you kindly reload it?
may help to find For a quick fix, you can try to go to the "Artifacts" tab of that page, from this link? https://ci.appveyor.com/project/vene/polylearn/build/job/48ulj1u1d3vq3jfq
As that page says, artifacts get deleted after 6 months, which is why you can't find them anymore. Like I said before, it looks like you should disable cygwin and install the correct visual c++ compiler for your python version. It might work to use a distutils.cfg file, see here for more info: https://wiki.python.org/moin/WindowsCompilers