Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. git clone https://github.com/scikit-learn/scikit-learn.git # I added that
  2. cd scikit-learn # I added that
  3. git fetch origin
  4. git reset --hard origin/master
  5.  
  6. # Compile source code
  7. echo "Building scikit-learn"
  8. make clean
  9. python setup.py develop
  10.  
  11. # Compile doc and run example to populate the gallery
  12. cd doc
  13. sphinx-build -b html -d _build/doctrees . _build/html/stable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement