tech:go_lang_-_notebook_-_jupyter
Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| tech:go_lang_-_notebook_-_jupyter [2026/05/03 22:38] – Jean-Baptiste | tech:go_lang_-_notebook_-_jupyter [2026/05/17 15:59] (Version actuelle) – Jean-Baptiste | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| + | < | ||
| + | {{tag> | ||
| + | |||
| + | # Go lang - notebook - Jupyter | ||
| + | |||
| + | |||
| + | Voir aussi : | ||
| + | * REPL https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | |||
| + | Voir la liste des Kernels pour Jupyter : | ||
| + | * https:// | ||
| + | |||
| + | |||
| + | ~~~go | ||
| + | podman run -it -p 8888:8888 docker.io/ | ||
| + | ~~~ | ||
| + | |||
| + | Source : https:// | ||
| + | |||
| + | Install NOK sous Debian mais fonctionne en conteneur | ||
| + | |||
| + | |||
| + | ## Introspection / reflection | ||
| + | |||
| + | Voir : | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | |||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | * https:// | ||
| + | |||
| + | Utile pour l’introspection : | ||
| + | |||
| + | `reflect.TypeOf` | ||
| + | ~~~go | ||
| + | import " | ||
| + | |||
| + | reflect.TypeOf(print) | ||
| + | // fast.Builtin | ||
| + | |||
| + | reflect.TypeOf(fmt.Println) | ||
| + | // func(...interface {}) (int, error) | ||
| + | ~~~ | ||
| + | |||
