jupyterlab / on_startup.sh
3v324v23's picture
node updated to v18LTS, gitignore added, rclone fix
682ca3b
raw
history blame contribute delete
427 Bytes
# Versión 1.1
# on_startup.sh-v1.1
# Changelog:
# - Asegurado que el script tenga permisos ejecutables.
# - Verificado que el script tiene el formato correcto y el shebang.
#!/bin/bash
# Write some commands here that will run on root user before startup.
# For example, to clone transformers and install it in dev mode:
# git clone https://github.com/huggingface/transformers.git
# cd transformers && pip install -e ".[dev]"