On 1/10/25 12:53, Thomas Passin via Python-list wrote:
On 1/10/2025 4:00 PM, Tim Johnson via Python-list wrote:
On 1/10/25 11:32, MRAB via Python-list wrote:
,,, snipped
Below is the pertinent code:
Popen(choice, stdout=PIPE, stderr=PIPE,
stdin=PIPE, close_fds=True
On 1/10/25 11:32, MRAB via Python-list wrote:
,,, snipped
Below is the pertinent code:
Popen(choice, stdout=PIPE, stderr=PIPE,
stdin=PIPE, close_fds=True)
My guess is my argument list is either insufficient or an argument is
causing the problem, but am unsure of which
Using Python 3.12.3 on Ubuntu 24.04
I've converted a legacy python2 script to python3. All went well.
However, a glitch from python2 remains.
The script uses dmenu to create menus to pick applications. Applications
are then invoked from python
using subprocess.Popen(). I have never been abl
On 12/31/24 15:00, Tim Johnson wrote:
. Snipped
I resolved this by extrapolating known paths of other non-distro pipx
installs, and am back
in business now. I'm taking lots of notes. For some reason, even after
running updatedb,
I had no luck finding with locate.
I was not aware tha
Please let me grumble for a minute : I've been using python since before
1. 5, when I could email Guido van Rossum directly with questions
and on at least one occasion we swapped stories about our cats. I put
six kids though college writing python, and now after
being retired for ten years,
On 12/9/24 14:59, Tim Johnson wrote:
Recently did a refresh of ubuntu 24.04
With no code changes am now getting a *ModuleNotFoundError *for youtube_dl
Relevant code is
import sys
sys.path.append("/home/tim/.local/share/pipx/venvs/youtube-dl/lib/python3.12/site-packages/youtube_dl")
import y
Recently did a refresh of ubuntu 24.04
With no code changes am now getting a *ModuleNotFoundError *for youtube_dl
Relevant code is
import sys
sys.path.append("/home/tim/.local/share/pipx/venvs/youtube-dl/lib/python3.12/site-packages/youtube_dl")
import youtube_dl '
Navigating to
/home/tim/.l
On 11/1/24 08:32, dieter.mau...@online.de wrote:
...
After the recent upgrades I had to install youtube_dl with pipx for the
new python version.
When I ran the script which imported youtube_dl, I got an import error
as it appears the path to the module
was not in sys.path
I see at several op
FYI: I am retired programmer using a recent upgrade to ubuntu 24.04 and
python 3.12
My needs are that of a hobbyist at this time. I am on a single user home
desktop with root privileges available.
After the recent upgrades I had to install youtube_dl with pipx for the
new python version.
When