Advertisement
mork

Untitled

May 5th, 2025
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.51 KB | Software | 0 0
  1. #!/bin/bash
  2. #SBATCH --job-name=instalajupyter
  3. #SBATCH --ntasks=1
  4. #SBATCH --cpus-per-task=1
  5. #SBATCH --mem=8G
  6. #SBATCH --time=1:00:00
  7. #SBATCH --partition=normal
  8. #SBATCH --qos=normal
  9. #SBATCH --output=install_jupyter.out
  10.  
  11. wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
  12.  
  13. #instala miniconda
  14. sh Miniconda3-latest-Linux-x86_64.sh -b -u
  15.  
  16. #carga el env
  17. source /clusteruy/home/$USER/miniconda3/bin/activate
  18.  
  19. #instala jupyter
  20. pip install jupyter
  21.  
  22. echo "Finalizó la instalación de Jupyter"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement