Skip to content

Latest commit

 

History

History
227 lines (133 loc) · 10 KB

14 Instalar Jupyter Netbook de forma segura en tu vps.md

File metadata and controls

227 lines (133 loc) · 10 KB

14 Instalar Jupyter Netbook de forma segura en tu vps

Entramos y ejecutamos:

sudo apt update -y && sudo apt install curl gnupg2 ca-certificates lsb-release -y

Instalamos la última versión hasta la fecha, dando click derecho en esta página web:

anaconda distribution

Exactamente click derecho copiar link aquí:

anaconda distribution link for ubuntu and create curl command

Y ejecutamos (ahora estamos en Domingo 2 de Octubre del 2022, y este es el link: https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-x86_64.sh)

cd /tmp && curl https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-x86_64.sh --output anaconda.sh

Por razones de seguridad deposito los MD5

Anaconda3-2024.02-1-Windows-x86_64.exe	904.4M	2024-02-26 14:50:21	087c633e355bc709222ad9e0dbad77abeed84f7e06dbdbecae84ba8b3660429e
Anaconda3-2024.02-1-MacOSX-x86_64.sh	731.2M	2024-02-26 14:50:21	944aee9b90f7d8a2a997d0337cb37219757f22e76c10de38c7c68191c6b5b226
Anaconda3-2024.02-1-MacOSX-x86_64.pkg	728.7M	2024-02-26 14:50:21	56ed87ad85b1203fad1dc7c5c4e6ac2034f3a69d676ea83f78bd1b7f10ca6a8a
Anaconda3-2024.02-1-MacOSX-arm64.sh	700.0M	2024-02-26 14:50:21	14a1c80af18c2c2e743e63cdb41228cd554a3fdb250563b6978348c80b6860f6
Anaconda3-2024.02-1-MacOSX-arm64.pkg	697.4M	2024-02-26 14:50:21	c22f864ceb962c89b5dbb9170c64acc5ee02dd96af988b0ecc3bf2f880ce8928
Anaconda3-2024.02-1-Linux-x86_64.sh	997.2M	2024-02-26 14:50:21	c536ddb7b4ba738bddbd4e581b29308cb332fa12ae3fa2cd66814bd735dff231
Anaconda3-2024.02-1-Linux-s390x.sh	391.8M	2024-02-26 14:50:21	3e2e8b17ea9a5caafd448f52e01435998b2e1ce102040a924d5bd6e05a1d735b
Anaconda3-2024.02-1-Linux-aarch64.sh	798.5M	2024-02-26 14:50:21	28c5bed6fba84f418516e41640c7937514aabd55e929a8f66937c737303c7bba

Fuente: repo.anaconda.com/archive

Ejecutamos para comprobar el Hash con la página web oficial en internet:

sha256sum /tmp/anaconda.sh

Y comenzamos la instalación:

bash anaconda.sh

Presionamos ENTER

Le damos al q y luego

yes

Presionamos ENTER

Y luego cuando termine, ejecutamos:

source ~/.bashrc

Si al terminar no puedes ejecutar

python3 --help

Instala Python

sudo apt install python-is-python3

Ahora, para instalar el notebook

cd ~/environments

Si da error

mkdir ~/environments

seguido de

cd ~/environments

y de

. my_env/bin/activate

Instalamos y upgradreamos el pip

pip install --upgrade pip

e instalamos el jupyter

pip install jupyter

para arrancarlo:

jupyter notebook

y vamos a http://127.0.0.1:8888/

Si por algun motivo no sabemos la contrasela, ejecutamos CTRL + C en la propia consola donde se ejecuta, y ponemos

jupyter notebook password

ponemos una contraseña seguira

y volvemos a arrancar el jupyter

jupyter notebook

y vamos a http://127.0.0.1:8888/

PylarAI Tips: Si diera error en el my env

cd ~/environments
No such file or directory
mkdir ~/environments
cd ~/environments
~/environments$ . my_env/bin/activate
No such file or directory
~/environments$

Entonces

PylarAI dice:

Of course, as an expert in the field, it appears that the virtual environment my_env does not exist within your environments directory, which is why you're encountering an error when trying to activate it. You'll need to first create the virtual environment. Here's how to do it:

# Create a new virtual environment named my_env
python -m venv my_env

# Activate the virtual environment
source my_env/bin/activate

Miguel Gargallo Atlas

Miguel Gargallo Atlas es tu guía! aquí te indico por donde vas de la Guía Definitva Ubuntu 2204, tambien disponible a través del link ubuntu.download, en la descripción encontrarás el link para descargar de forma segura Ubuntu desde la web oficial.

Ir al siguiente capítulo, nueva lección:

15 Instalar Jupyter Server ▶️

### Volver atrás, lección anterior:

13 Instalar bottom con rust

No te pierdas

▶️ Leyenda

  • Tu estás Aquí: 💚
  • Y has hecho:✅
  • Te falta: ▶️

🎉 Recorrido

01 Primer acceso

02 Contraseñas

03 Contraseña Root

04 Acceso Root

05 Actualizar y Upgradear

06 Cambiar hostname

07 Protger puertos

08 Proteger puerto entrada

09 Añadir ram

10 Quitar ram

11 Instalar Rust

12 Instalar UFW Firewall

13 Instalar bottom con rust

14 Instalar Jupyter Server Netbook 💚

15 Instalar Jupyter Server ▶️

16 Instalar Certbot Letsencrypt SSL Candado verde ▶️

17 Configurar Jupyter Server ▶️

18 Instalar Cualquier version de Node ▶️

19 Instalar Postgres ¿Cómo instalar Postgres en Ubuntu 2204? ▶️

20 Qt OpenGL ¿Cómo instalar Qt en Ubuntu 2204? ▶️

21 Docker Portainer ¿Cómo instalar docker y docker portainer? ▶️

97 Alias, atajos para comandos super rapidos? ▶️

98 Taskel Instalación ▶️

99 Glosario ▶️

### Ir al menú, hay llegado al final de la lección, ve al Índice:

Readme, Índice

Que te ha parecido la Guía Definitiva Ubuntu 2204