Skip to content

Commit 332d20b

Browse files
committed
additional initial configuration
1 parent bbebe6f commit 332d20b

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,22 @@
33
[![Github Actions Status](https://github.com/QuantStack/jupyterlab-blockly-ipylgbst/workflows/Build/badge.svg)](https://github.com/QuantStack/jupyterlab-blockly-ipylgbst/actions/workflows/build.yml)[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/QuantStack/jupyterlab-blockly-ipylgbst/main?urlpath=lab)
44
Blockly extension for JupyterLab to control the Lego Boost, using the ipylgbst library.
55

6+
## Blockly
7+
8+
Blockly is a library from Google for building beginner-friendly block-based programming languages.
9+
10+
Docs: https://developers.google.com/blockly/guides/overview
11+
Repo: https://github.com/google/blockly
12+
13+
## Lego Boost Robotics Set
14+
15+
A Lego creative toolbox which offers an easy way to learn the basics of coding, engineering and robotics.
16+
17+
Link: https://www.lego.com/en-de/product/boost-creative-toolbox-17101
18+
619
## Requirements
720

8-
- JupyterLab >= 3.0
21+
- JupyterLab == 3.6
922

1023
## Install
1124

@@ -34,6 +47,8 @@ The `jlpm` command is JupyterLab's pinned version of
3447
`yarn` or `npm` in lieu of `jlpm` below.
3548

3649
```bash
50+
micromamba create -n blockly-ipylgbst -c conda-forge python nodejs=18 yarn pre-commit jupyterlab==3.6 jupyter-packaging jupyterlab-language-pack-es-ES jupyterlab-language-pack-fr-FR ipykernel xeus-python xeus-lua
51+
micromamba activate blockly-ipylgbst
3752
# Clone the repo to your local environment
3853
# Change directory to the jupyterlab-blockly-ipylgbst directory
3954
# Install package in development mode

src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ const plugin: JupyterFrontEndPlugin<void> = {
1010
id: 'jupyterlab-blockly-ipylgbst:plugin',
1111
autoStart: true,
1212
activate: (app: JupyterFrontEnd) => {
13-
console.log('JupyterLab extension jupyterlab-blockly-ipylgbst is activated!');
13+
console.log(
14+
'JupyterLab extension jupyterlab-blockly-ipylgbst is activated!'
15+
);
1416
}
1517
};
1618

0 commit comments

Comments
 (0)