Welcome to Free PC Help, a free PC Help forum to get help with your computer problems.

Free PC Help is a community that offers free computer help and support for all users, all ages, worldwide.

In order to start asking questions or contribute on someone else's post you will first need to register. Don't worry - it's quick and easy and once you have registered you will have instant access to the entire forum.

If you do decide to join the forums you will not have the option to send Private Messages [ PMs ] or add a Signature until you have made 5 posts or more. This is an attempt to try to stop Spammers using the PM system or adding links to their Signature.

ModuleNotFoundError: No module named ‘PySide’

Piotr Bujakowski

FPCH Member
Joined
Aug 18, 2020
Messages
13
Location
London
Very Experienced
Hi.

I start Python course.
Now I have that a problem.
I try find something but still is that same.
Please help, thanks.

I using with fresh updates:
5.19.0-35-generic #36~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Feb 17 15:17:25 UTC 2 x86_64 x86_64 x86_64 GNU/Linux

pip3 install PySide6
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: PySide6 in ./.local/lib/python3.10/site-packages (6.4.3)
Requirement already satisfied: shiboken6==6.4.3 in ./.local/lib/python3.10/site-packages (from PySide6) (6.4.3)
Requirement already satisfied: PySide6-Essentials==6.4.3 in ./.local/lib/python3.10/site-packages (from PySide6) (6.4.3)
Requirement already satisfied: PySide6-Addons==6.4.3 in ./.local/lib/python3.10/site-packages (from PySide6) (6.4.3)

type or paste copython3 -m pip install “SomeProject”
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement SomeProject (from versions: none)
ERROR: No matching distribution found for SomeProject

python3 -m pip install “SomeProject==1.4”
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement SomeProject==1.4 (from versions: none)
ERROR: No matching distribution found for SomeProject==1.4

python3 -m pip install “SomeProject>=1,<2”
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement SomeProject<2,>=1 (from versions: none)
ERROR: No matching distribution found for SomeProject<2,>=1

python3 -m pip install “SomeProject~=1.4.2”
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement SomeProject~=1.4.2 (from versions: none)
ERROR: No matching distribution found for SomeProject~=1.4.2

pip install PySide6
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: PySide6 in ./.local/lib/python3.10/site-packages (6.4.3)
Requirement already satisfied: PySide6-Essentials==6.4.3 in ./.local/lib/python3.10/site-packages (from PySide6) (6.4.3)
Requirement already satisfied: shiboken6==6.4.3 in ./.local/lib/python3.10/site-packages (from PySide6) (6.4.3)
Requirement already satisfied: PySide6-Addons==6.4.3 in ./.local/lib/python3.10/site-packages (from PySide6) (6.4.3)

python setup.py install --qtpaths=/path/to/bin/qtpaths6 --parallel=8 --build-tests
Command ‘python’ not found, did you mean:
command ‘python3’ from deb python3
command ‘python’ from deb python-is-python3
 
Back
Top