10-30-2021, 05:39 PM
(10-27-2021, 03:03 AM)TheOldPresbyope Wrote:(10-27-2021, 02:01 AM)jmperagine Wrote: This is a new clean build of Moode 7.4.1
After booting, I changed the default python to 3.7, updated anyio to 3.3.4, installed sxm-player0.2.5 and sxm0.2.8
There's no need to change the default python so long as you use pip3. Don't know what updating anyio buys you. My working installation is using anyio 3.3.3.
Quote:For some reason, sxm keeps getting installed in a hidden directory.
CODE:
pi@moode:~/.local/bin $ ls
coloredlogs dotenv httpx humanfriendly iptest iptest3 ipython ipython3 normalizer pygmentize sxm sxm-player
CODE:
pi@moode:/ $ which sxm-player
/home/pi/.local/bin/sxm-player
This is because you did not execute pip3 install as root, e.g., sudo pip3 install sxm-player
As a result sxm-player is installed in the .local directory of normal user pi instead of being installed in a system directory available to all users. This changes its accessibility to other parts of the system and can cause weird and wonderful problems.
Regards,
Kent
All good! Thank you!