環境
- Python3
こんな感じ
~/python/Random-Forest-Example $python estimation.py Traceback (most recent call last): File "estimation.py", line 2, in <module> from sklearn.ensemble import RandomForestClassifier ImportError: No module named 'sklearn'
解決
apt経由でインストールしろとか言う記事もあるけどpip経由のほうが無難
pip install scikit-learn