Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. # create and activate environment
  2. virtualenv pandas_like_ml
  3. source pandas_like_ml/bin/activate
  4.  
  5. # install your desired libraries
  6. pip install --upgrade pip
  7. pip install scikit-learn==0.21.1
  8. pip install pandas==0.19.1
  9.  
  10. # the main event
  11. python eigenfaces.py -n 20000
  12.  
  13. # we're done here, so exit the environment
  14. source deactivate
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement