Conda install notebook

Hi. I am trying to run the command conda install notebook but get this error python >=3.11,<3.12.0a0 *, which can be installed;
│ ├─ notebook 7.0.8 would require

And I am getting this error as well. pin on python =3.14 * is not installable because it requires
└─ python =3.14 *, which conflicts with any installable versions previously reported

Anyone else have this error and know what to do to fix it? I am brand new to this so idk how to fix it

@Brooks Hi,

I just testing installing notebook from the Anaconda main channel into a fresh environment on an Apple silicon mac and it worked fine. Is creating a fresh environment a viable solution? This isolates the notebook installation from whatever constraints exist in your current environment.

conda create -n notebook notebook
conda activate notebook

This worked on my end with Python 3.14 and notebook 7.5.0.

If you need notebook in a specific existing environment, it would be helpful to know the information below to be able to help out more.

Which environment are you installing into? (conda info)

What Python version is currently installed there? (conda list python)

Are there any pins configured? (conda config --show pinned_packages and check for a pinned file)

What channels are configured? (conda config --show channels)

What platform and architecture are you using?