Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. conda create create --name <NAME> python=3.7
  2.  
  3. # nb_conda_kernals allows all conda environments to be activated from within Jupyter
  4. conda install jupyter nb_conda_kernels
  5.  
  6. # Install scientific packages
  7. conda install networkx numpy pandas scikit-learn scipy seaborn
  8. pip install graspy
  9.  
  10. # Formatting packages
  11. conda install black flake8
  12. pip install pycodestyle pycodestyle_magic
  13.  
  14. # Other useful packages
  15. conda install tqdm
  16. conda install -c conda-forge jupyter_contrib_nbextensions
  17. conda install -c conda-forge jupyter_nbextensions_configurator
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement