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
Running the "Create New Project" command on Ubuntu 22.04 with pre-installed Python3.11 I got an error when the virtual environment is being created: Error: Command '['REDACTED/.venv/bin/python3.11', '-m', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1. 1:40:30 PM: Error: Failed to run "python3.11" command. Check output window for more details.
Manual Fixing
Running the command manually I noticed 'ensurepip' wasn't installed and fixed the problem by running: apt-get install python3.11-venv
Recommendation
The extension should check for ensurepip before assuming it's installed.
The text was updated successfully, but these errors were encountered:
Reproduction Steps
Running the "Create New Project" command on Ubuntu 22.04 with pre-installed Python3.11 I got an error when the virtual environment is being created:
Error: Command '['REDACTED/.venv/bin/python3.11', '-m', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1. 1:40:30 PM: Error: Failed to run "python3.11" command. Check output window for more details.
Manual Fixing
Running the command manually I noticed 'ensurepip' wasn't installed and fixed the problem by running:
apt-get install python3.11-venv
Recommendation
The extension should check for ensurepip before assuming it's installed.
The text was updated successfully, but these errors were encountered: