Python 3.10.0 : Problems with pipx
by andrew.46 from LinuxQuestions.org on (#5QS7H)
I am running -current and have received the Python update to 3.10.0. So now the following is reported:
Code:andrew@ilium~$ python2 --version
Python 2.7.18
andrew@ilium~$ python3 --version
Python 3.10.0My pipx installation of eyeD3 broke so I eventually removed the local pipx and went to reinstall as follows:
Code:python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx install eyeD3However this was unsuccessful and I am curious to see if other -current users have the same issue:
Code:andrew@ilium~$ python3 -m pip install --user pipx
Collecting pipx
Using cached pipx-0.16.4-py3-none-any.whl (53 kB)
Collecting userpath>=1.6.0
Using cached userpath-1.7.0-py2.py3-none-any.whl (14 kB)
Collecting argcomplete<2.0,>=1.9.4
Using cached argcomplete-1.12.3-py2.py3-none-any.whl (38 kB)
Requirement already satisfied: packaging>=20.0 in /usr/lib64/python3.10/site-packages (from pipx) (21.0)
Requirement already satisfied: pyparsing>=2.0.2 in /usr/lib64/python3.10/site-packages (from packaging>=20.0->pipx) (2.4.7)
Collecting click
Using cached click-8.0.3-py3-none-any.whl (97 kB)
Installing collected packages: click, userpath, argcomplete, pipx
Successfully installed argcomplete-1.12.3 click-8.0.3 pipx-0.16.4 userpath-1.7.0
andrew@ilium~$ python3 -m pipx ensurepath
/usr/bin/python3: No module named pipxOdd because pipx is there:
Code:andrew@ilium~$ find . -iname pipx
./.local/bin/pipx
./.local/lib64/python3.10/site-packages/pipx
andrew@ilium~$and it is appropriately loaded / sourced from my ~/.bashrc:
Code:# Created by `pipx` on 2021-07-26 09:02:15
export PATH="$PATH:/home/andrew/.local/bin"Any thoughts?
Code:andrew@ilium~$ python2 --version
Python 2.7.18
andrew@ilium~$ python3 --version
Python 3.10.0My pipx installation of eyeD3 broke so I eventually removed the local pipx and went to reinstall as follows:
Code:python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx install eyeD3However this was unsuccessful and I am curious to see if other -current users have the same issue:
Code:andrew@ilium~$ python3 -m pip install --user pipx
Collecting pipx
Using cached pipx-0.16.4-py3-none-any.whl (53 kB)
Collecting userpath>=1.6.0
Using cached userpath-1.7.0-py2.py3-none-any.whl (14 kB)
Collecting argcomplete<2.0,>=1.9.4
Using cached argcomplete-1.12.3-py2.py3-none-any.whl (38 kB)
Requirement already satisfied: packaging>=20.0 in /usr/lib64/python3.10/site-packages (from pipx) (21.0)
Requirement already satisfied: pyparsing>=2.0.2 in /usr/lib64/python3.10/site-packages (from packaging>=20.0->pipx) (2.4.7)
Collecting click
Using cached click-8.0.3-py3-none-any.whl (97 kB)
Installing collected packages: click, userpath, argcomplete, pipx
Successfully installed argcomplete-1.12.3 click-8.0.3 pipx-0.16.4 userpath-1.7.0
andrew@ilium~$ python3 -m pipx ensurepath
/usr/bin/python3: No module named pipxOdd because pipx is there:
Code:andrew@ilium~$ find . -iname pipx
./.local/bin/pipx
./.local/lib64/python3.10/site-packages/pipx
andrew@ilium~$and it is appropriately loaded / sourced from my ~/.bashrc:
Code:# Created by `pipx` on 2021-07-26 09:02:15
export PATH="$PATH:/home/andrew/.local/bin"Any thoughts?