Vlad Niculae
Vlad Niculae
like any other python package! In general I recommend using virtualenvs, perhaps you can create a new empty virtualenv and try to install what you need in there.
As the filenames suggest, it is still trying to use mingw32 and not msvc. Please direct your distutils to use msvc, and ensure you have the correct msvc installed (corresponding...
the distutils.cfg part yes, but watch out because python 3.6 might require a different version of msvc than python 3.5, I am not sure, check the link I sent to...
you might have to navigate outside of the polylearn dir before running python and importing. Try `cd C:\` or similar On Wed, Aug 7, 2019 at 8:32 PM Sandy4321 wrote:...
Create the file. On Wed, Aug 7, 2019, 21:29 Sandy4321 wrote: > I try to install polylern on another computer but on the computer there is > no > distutils.cfg...
The error in the example must be connected to changes in scikit-learn. What version of scikit-learn do you have installed? It may be older than supported, try upgrading. (If you...
Actually I realized we're bundling the .cpp files so I don't think Cython is an install dependency. I updated the readme accordingly.
@msh-tf are you still having issues?
I think the problem is you're trying to import polylearn from the source directory. This does not work. Try: `mkdir newdir; cd newdir; python -c "import polylearn"` In practice your...
This seems to be because the cython extensions need to be regenerated to work with your python version. Could you try installing cython and regenerate the extension files? (otherwise I...