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
When installing a new Python version, it failed when attempting to install default packages:
Installed Python-3.11.4 to /Users/myusername/.asdf/installs/python/3.11.4
Installing default python packages...ERROR: Could not find an activated virtualenv (required).
This is because I have PIP_REQUIRE_VIRTUALENV set to true in my shell. Looking at the install command, it uses pip as such:
When installing a new Python version, it failed when attempting to install default packages:
This is because I have
PIP_REQUIRE_VIRTUALENV
set totrue
in my shell. Looking at the install command, it usespip
as such:asdf-python/bin/install
Line 38 in 8505457
According to this Stack Overflow answer, I believe this command should include the
--isolated
flag. In my case, adding the flag works:The text was updated successfully, but these errors were encountered: