You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Positron uses pip to install ipykernel if it is missing. However, this doesn't work if pip itself is not present; Positron tries to install ipykernel but fails because pip is missing, rendering the environment unusable.
When we have an environment in this state we should do one of two things:
Exclude the environment entirely (perhaps it is e.g. a system installation that is not meant to install user packages)
Form an install chain that installs pip and then ipykernel (a cursory glance suggests there is instrumentation in the Python extension to bootstrap pip itself)
The text was updated successfully, but these errors were encountered:
When selecting an interpreter missing ipykernel, the UI prompt now
states that both Pip and ipykernel must be installed. `ProductInstaller`
logic was modified to pass flags to enable Pip to be installed
automatically. Additional flags were set in `ProductInstaller` to enable
the Pip install to respect the `python.installModulesInTerminal`
setting.
Addresses #5505
Positron uses
pip
to install ipykernel if it is missing. However, this doesn't work if pip itself is not present; Positron tries to install ipykernel but fails because pip is missing, rendering the environment unusable.When we have an environment in this state we should do one of two things:
The text was updated successfully, but these errors were encountered: