I recently upgraded from python 3.9.12 to 3.9.14 using asdf, and it was pretty simple:
sudo apt-get install liblzma-dev
asdf install python 3.9.14
asdf global python 3.9.14
But when I tried to run my pipenv, it didn’t work as planned
pipenv shell
No preset version installed for command pipenv
Please install a version by running one of the following:
asdf install python 3.9.14
or add one of the following versions in your config file at /home/mark/.tool-versions
python 3.9.12
After a lot of failed attemps to use asdf reshim and asdf update, I finally remembered the magic steps to use:
python -m pip install --upgrade pip
pip install pipenv
asdf update
asdf reshim python 3.9.14 # or whatever newest version is
pipenv install
pipenv shell
pipenv update # To actually install what was in Pipfile
The last trick that I needed to do was make sure that my .env gets read so that any Python environment variables I set are correctly read in.
vi ~/.local/share/virtualenvs/hostname-RANDOM/bin/activate
And add these 2 lines starting at line 4 of the activate script:
# Use this sequence to load up the environnment variables from your .env file in a Bash console:
#
set -a; source /home/mark/home/aei/aeicloud.22/.env; set +a
I had the same problem. NO ONE had anything that was helpful until I found this post! It fixed my issue. I’d been tolerating it for far too long! Thank you for taking the time to post this!