Ask any question about QuantStack projects: xtensor, xeus, voila, Jupyter widgets, mamba
Note: it's advised to use micromamba in containers & CI only
-f
or --file
and the env command reads yaml files
umanba
can be conda
The Good Parts
Nice article! Congrats for all the work.
I saw there is a new frontend for Quetz. I guess it's this repo https://github.com/mamba-org/quetz-frontend? Is it still WIP or would you recommend trying to use it?
The article also mentions a plugin to convert PyPI wheels to conda packages on the fly. I'd be interested in that. Where can I find that plugin?
hello guys, I am baffled. I have coded a pretty complex jupyer notebook involving various interconnected widgets and I thought I well understood how ipywidget worked. I might have found a bug though as today I am trying to simply run the following code:
out=widgets.Output()
dfa=pd.DataFrame({'x':[1,2,3],'y':[1,2,3]})
with out:
out.clear_output(wait=True)
print('ciao')
fig=px.scatter(dfa,x='x',y='y', width=800, height=400 )
fig.show()
out
And the output cell is displaying nothing. I am pretty sure that it should display the plotly express plot in fig. Instead it only display the 'ciao' being printed. The really weird thing is that I am using the same exact kernel with very similar code for my other complex applications involving multiple boxes and observes codes and everything is working fine. I don't understand what's wrong.
just
fig=px.scatter(dfa,x='x',y='y', width=800, height=400 )
fig.show()
shows an empty area