Hello Jesús Marí
Your most recent note about the different groups for the Metacello command clarifies the situation. Thank you also for your two answers yesterday 15th. You asked if I installed Jupyter and and ZeroMQ in your system? The answer is no: I was assuming Jupytertalk (your Pharo Smalltalk implementation) will provide a standalone setup for a Jupyter kernel. Look at how nteract works (https://nteract.io/) works. I download one executable file and that contains the client (the electron packed web browser) and a kernel (nodejs). No Python Jupyter installation necessary. If I want to add a R kernel I execute what is given in https://nteract.io/kernels/r Within R install.packages(c('repr', 'IRdisplay', 'evaluate', 'crayon', 'pbdZMQ', 'devtools', 'uuid', 'digest')) devtools::install_github('IRkernel/IRkernel') IRkernel::installspec() So I thought it is similar with Pharo Smalltalk Jupytertalk. This does not seem to be the case. A full Jupyter installation is 600MB as I have seen so far. I could go for that at the moment but actually I prefer a smaller solution. So my follow up question is: How do I install the ZeroMQ asynchronous messaging library for Pharo? Is that sufficient? I understand that the ZeroMQ installation is a prerequisite for the Pharo Smalltalk Jupytertalk installation but that the Metacello script does not load that (or only part of it) --Hannes On 8/16/18, Jesús Marí <jmariagui...@gmail.com> wrote: > Yes, you are right, indeed there are three groups in the baseline so you > can > install only JupyterTalk package doing > > Metacello new > baseline: 'JupyterTalk'; > repository: 'github://jmari/JupyterTalk:master/repository'; > load:'default' > > This is the right way. > > ---------------------------- > group: 'default' with: #('JupyterTalk'); > group: 'roassalSupport' with: #('JupyterTalk-Roassal'); > group: 'all' with: #('JupyterTalk-Roassal'). > > > > -- > Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html > >