Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing modules in jupyterlab online try online

I am not from IT background and learning python for data analysis and biostats. I started using jupyterlab (https://jupyter.org/try-jupyter/lab). I can install and import few modules like pandas and numpy but can't install ipysheet. I tried few ways like using pip,%pip, piplite.install() but all attempts failed. Can you kindly suggest a way out? Or if you can suggest a way to use spyder online without installation? Many thanks.

like image 826
Clinical Info Avatar asked Dec 04 '25 04:12

Clinical Info


1 Answers

You probably should install python or use Google Colab instead. Now you are using jupyterLite which is based on Pyodide. Pyodide doesn't support the installation of any python package. but Google Colab uses a real python kernel.

you can install your packages on Colab with:

!pip install some-package-name
like image 150
Nima Afshar Avatar answered Dec 05 '25 21:12

Nima Afshar