File tree Expand file tree Collapse file tree 7 files changed +18
-13
lines changed Expand file tree Collapse file tree 7 files changed +18
-13
lines changed Original file line number Diff line number Diff line change 1
- ### Mejora ` jupyter ` notebook
1
+ ### Mejora Jupyter Notebook
2
2
3
3
Mejora la visualización del [ elemento ` details ` para revelación de información] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details ) en tus notebooks.
4
4
Original file line number Diff line number Diff line change 1
1
## Chequeo de la configuración de Python
2
2
3
+ ### Chequeo de Python y packages
4
+
3
5
Reinicia tu terminal:
4
6
5
7
``` bash
@@ -21,6 +23,8 @@ Ahora ejecuta el siguiente comando para verificar que puedas cargar estos paquet
21
23
python -c " $( curl -fsSL < PIP_LOADER_URL> ) "
22
24
```
23
25
26
+ ### Chequeo de Jupyter
27
+
24
28
Ahora verifica que puedas iniciar un servidor de notebook en tu máquina:
25
29
26
30
``` bash
Original file line number Diff line number Diff line change 1
-
2
- ## Configuración de Jupyter Notebook para abrirlo en tu navegador
1
+ ### Configuración de Jupyter Notebook para abrirlo en tu navegador
3
2
4
3
Genera el archivo de configuración para ** Jupyter Notebook** ...
5
4
@@ -18,13 +17,13 @@ Ahora edita el archivo de configuración de Jupyter generado:
18
17
Localiza la siguiente línea en el archivo de configuración:
19
18
20
19
``` python
21
- # c.NotebookApp .use_redirect_file = True
20
+ # c.ServerApp .use_redirect_file = True
22
21
```
23
22
24
23
Y reemplázala por éste ** precisamente** 👇 (incluyendo la eliminación del símbolo ` # ` )
25
24
26
25
``` python
27
- c.NotebookApp .use_redirect_file = False
26
+ c.ServerApp .use_redirect_file = False
28
27
```
29
28
30
29
Intenta usar Jupyter:
Original file line number Diff line number Diff line change 1
- ### ` jupyter ` notebook tweaking
1
+ ### Jupyter Notebook tweaking
2
2
3
3
Let's improve the display of the [ ` details ` disclosure elements] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details ) in your notebooks.
4
4
Original file line number Diff line number Diff line change 1
- ## Python setup check up
1
+ ## Python setup check
2
+
3
+ ### Python and packages check
2
4
3
5
Let's reset your terminal:
4
6
@@ -21,6 +23,8 @@ Now run the following command to check if you can load these packages:
21
23
python -c " $( curl -fsSL < PIP_LOADER_URL> ) "
22
24
```
23
25
26
+ ### Jupyter check
27
+
24
28
Make sure you can run Jupyter:
25
29
26
30
``` bash
Original file line number Diff line number Diff line change 1
1
2
- ## Configuring Jupyter Notebook to open in your browser
2
+ ### Configuring Jupyter Notebook to open in your browser
3
3
4
4
Let's generate the configuration file for ** Jupyter Notebook** ...
5
5
6
6
``` bash
7
7
jupyter notebook --generate-config
8
8
```
9
9
10
- ⚠️ Please copy the path returned by the previous command.
11
-
12
10
We will now edit the generated Jupyter configuration file:
13
11
14
12
``` bash
@@ -18,13 +16,13 @@ We will now edit the generated Jupyter configuration file:
18
16
Locate the following line in the configuration file:
19
17
20
18
``` python
21
- # c.NotebookApp .use_redirect_file = True
19
+ # c.ServerApp .use_redirect_file = True
22
20
```
23
21
24
22
And replace it with this one ** precisely** 👇 (including removing the ` # ` symbol)
25
23
26
24
``` python
27
- c.NotebookApp .use_redirect_file = False
25
+ c.ServerApp .use_redirect_file = False
28
26
```
29
27
30
28
Let's try to run Jupyter:
Original file line number Diff line number Diff line change 80
80
ubuntu_python
81
81
virtualenv
82
82
pip
83
- win_jupyter
84
83
nbextensions
84
+ win_jupyter
85
85
python_checkup
86
86
dbeaver
87
87
setup/windows_settings
You can’t perform that action at this time.
0 commit comments