2019-08-14 00:07:10 +02:00
|
|
|
#!/bin/bash
|
2018-12-28 21:59:37 +01:00
|
|
|
|
2018-12-29 11:24:56 +01:00
|
|
|
#=================================================
|
2019-08-14 00:07:10 +02:00
|
|
|
# COMMON VARIABLES
|
2018-12-29 11:24:56 +01:00
|
|
|
#=================================================
|
|
|
|
|
2019-08-14 00:07:10 +02:00
|
|
|
# dependencies used by the app
|
2020-06-22 14:31:44 +02:00
|
|
|
pkg_dependencies="python3-dev python3-pip libffi-dev libzmq3-dev"
|
2018-12-28 21:59:37 +01:00
|
|
|
|
2021-01-05 09:00:44 +01:00
|
|
|
nodejs_version="14"
|
2020-04-28 19:44:03 +02:00
|
|
|
|
2021-03-17 18:55:20 +01:00
|
|
|
jupyterlab_version="3.0.11"
|
2020-04-24 11:15:29 +02:00
|
|
|
|
2018-12-28 21:59:37 +01:00
|
|
|
#=================================================
|
2019-08-14 00:07:10 +02:00
|
|
|
# PERSONAL HELPERS
|
2018-12-28 21:59:37 +01:00
|
|
|
#=================================================
|
2018-12-30 16:00:54 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-08-14 00:07:10 +02:00
|
|
|
# EXPERIMENTAL HELPERS
|
2018-12-30 16:00:54 +01:00
|
|
|
#=================================================
|
|
|
|
|
2018-12-28 21:59:37 +01:00
|
|
|
#=================================================
|
2019-08-14 00:07:10 +02:00
|
|
|
# FUTURE OFFICIAL HELPERS
|
2018-12-28 21:59:37 +01:00
|
|
|
#=================================================
|