Hi. I have an old Macbook Pro 12 (late 2011) with MacOS High Sierra ver. 10.13.6. Obviously, I could no longer update the OS. How do I download or use JupyterLab or JupyterLite?
I have JupyterLite already but there are functions that don’t work or that I could not use.
conda-forge still actively supports 10.13… for now.
download, install and activate a miniforgebase environment
start an environment.yml that captures what you want. Probably start conservative (e.g. oldest non-EOL python)
# environment.yml
channels:
- conda-forge
- nodefaults
dependencies:
# specify at least the major versions
- python # 3.9.*
- jupyterlab # 4.3.*
# add your other stuff here