Ted X
06/04/2022, 10:29 PMpython3 -m pip
works fine, and so does python3 -m venv
. I've seen some similar threads about this issue in this channel but those failures seem different than mineTed X
06/04/2022, 10:33 PM(set -euxo pipefail; mkdir -p tmp; python3 -m venv venv; source venv/bin/activate; python3 -m pip install volare; which volare)
. So my python install is fine, as are the binary/file permissions, but something else during setup is going amiss...Ted X
06/04/2022, 10:45 PMmake setup
solves the issueTed X
06/04/2022, 10:46 PMdonn
06/05/2022, 5:00 AM