[email protected] píše v Út 05. 03. 2013 v 18:01 -0800: > ut00-PYZ.pyz\sklearn.__check_build", line 26, in raise_build_error > WindowsError: [Error 3] The system cannot find the path specified: 'C: > \\Users\\C LEANI~1\\AppData\\Local\\Temp\\_MEI24282\\sklearn\ > \__check_build/*.*'
This is definitely an issue with scikit-learn. It expects some directories to exist. Look at file ./sklearn/__check_build/__init__.py and other files there. scikit-learn package is trying to do 'os.listdir()' for directory .\sklearn\__check_build that does not exist. However, it does this already when trying to raise an exception. You could closer at how sklearn is trying to verify the build! You could try to create this directory in --onedir mode and if necessary put there some files. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
