Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # Get the latest name using tab completion or check sys.prefix from within jupyterhub
  2. module load python/3.7-anaconda-2019.07
  3.  
  4. # Create a new env. Only list the pkgs you need since they will be downloaded into ~/.conda/pkgs/
  5. conda create -n desietcimg pip ipython jupyter ipykernel numpy scipy matplotlib pyyaml
  6.  
  7. # conda activate <env> is not supported at NERSC yet
  8. source activate desietcimg
  9.  
  10. # Add standard packages using conda or pip
  11. pip install fitsio
  12.  
  13. # Add packages under local development
  14. cd ~/DESI/code/desietcimg
  15. pip install -e .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement