Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. Python Environment Management: Anaconda
  2.  
  3. Install Anaconda then open anaconda prompt.
  4.  
  5. Create a new environment:
  6. -> conda create --name CLBP python=3.5
  7.  
  8. Change working environment:
  9. -> conda activate CLBP
  10.  
  11. Add dependencies using conda:
  12. -> conda install -c conda-forge jupyterlab
  13. -> conda install -c anaconda pil
  14.  
  15. Add dependencies using pip:
  16. -> pip install numpy
  17. -> pip install jupyter
  18. -> pip install scikit-image
  19.  
  20.  
  21. Create and go to your working directory from anaconda prompt (e.g. D:\CLBP) then manually extract Ground_Truth_Label.zip & Manual_Label_Data.zip
  22.  
  23. copy CLBP.ipynb to your working directory
  24.  
  25. activate jupyter notebook from your working directory by typing:
  26. "jupyter notebook"
  27.  
  28. select CLBP.ipynb from the popped up jupyter in your browser.
  29.  
  30. Press Shift+Enter to run a block of code
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement