CheckPointSW / Karta

Karta - source code assisted fast binary matching plugin for IDA
MIT License
862 stars 103 forks source link

The latest sklearn doesn't support Python2.7 #23

Closed 4B5F5F4B closed 5 years ago

4B5F5F4B commented 5 years ago

Scikit-learn 0.20 was the last version to support Python2.7,so I think we'd better to use this version in setup.py like this

install_requires=['elementals', 'sark', 'pydocstyle', 'flake8', 'click', 'scikit-learn==0.20.0'],
echin20 commented 5 years ago

Did that actually work for you? I stopped at scipy and said it needed Python >= 3.5

4B5F5F4B commented 5 years ago

Did that actually work for you? I stopped at scipy and said it needed Python >= 3.5

I installed scikit-learn manually like this:

pip install scikit-learn==0.20.0

chkp-eyalit commented 5 years ago

Probably worked for me since I installed it some months ago. Will check your suggested fix.