Re: ModuleNotFoundError for youtube_dl

2024-12-10 Thread jkn via Python-list
On 10/12/2024 01:41, Tim Johnson wrote: 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-d

Re: ModuleNotFoundError for youtube_dl

2024-12-09 Thread Tim Johnson via Python-list
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"

ModuleNotFoundError for youtube_dl

2024-12-09 Thread Tim Johnson via Python-list
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 ' Navigatin

Re: ModuleNotFoundError: No module named 'Paramiko'

2024-04-09 Thread Wenyong Wei via Python-list
hi Sravan, Thanks for your response, checked and found there is only one python in my PC. From: Sravan Kumar Chitikesi Sent: Tuesday, 9 April 2024 3:42 AM To: Wenyong Wei Cc: python-list@python.org Subject: Re: ModuleNotFoundError: No module named 'Par

Re: ModuleNotFoundError: No module named 'Paramiko'

2024-04-09 Thread Mats Wichmann via Python-list
On 4/7/24 19:31, Wenyong Wei via Python-list wrote: Dear Sir/Madam, Recently I encounter a problem that I can't import paramiko in my computer. My PC running on window 10 64 bits. I have investigate this issue via internet, there are a lot of solutions for this issue, after trying most of the

Re: ModuleNotFoundError: No module named 'Paramiko'

2024-04-08 Thread Thomas Passin via Python-list
On 4/8/2024 3:35 PM, Keith Thompson via Python-list wrote: Thomas Passin writes: On 4/8/2024 2:01 PM, Dietmar Schwertberger via Python-list wrote: To be sure, you can always go the the directory of the Python interpreter and open a cmd window there. (By entering 'cmd' into the explorer address

Re: ModuleNotFoundError: No module named 'Paramiko'

2024-04-08 Thread Keith Thompson via Python-list
Thomas Passin writes: > On 4/8/2024 2:01 PM, Dietmar Schwertberger via Python-list wrote: >> To be sure, you can always go the the directory of the Python >> interpreter and open a cmd window there. >> (By entering 'cmd' into the explorer address bar.) >> Then enter 'python.exe -mpip install param

Re: ModuleNotFoundError: No module named 'Paramiko'

2024-04-08 Thread Thomas Passin via Python-list
On 4/8/2024 2:01 PM, Dietmar Schwertberger via Python-list wrote: To be sure, you can always go the the directory of the Python interpreter and open a cmd window there. (By entering 'cmd' into the explorer address bar.) Then enter 'python.exe -mpip install paramiko'. This way you can be sure tha

Re: ModuleNotFoundError: No module named 'Paramiko'

2024-04-08 Thread Dietmar Schwertberger via Python-list
To be sure, you can always go the the directory of the Python interpreter and open a cmd window there. (By entering 'cmd' into the explorer address bar.) Then enter 'python.exe -mpip install paramiko'. This way you can be sure that you're not running a pip.exe that belongs to another Python inte

Re: ModuleNotFoundError: No module named 'Paramiko'

2024-04-08 Thread Sravan Kumar Chitikesi via Python-list
pip may be pointed to another python version. try to remove other python versions and re install pip Regards, *Sravan Chitikesi* AWS Solutions Architect - Associate On Mon, Apr 8, 2024 at 10:58 PM Wenyong Wei via Python-list < python-list@python.org> wrote: > > Dear Sir/Madam, > > Recently I en

ModuleNotFoundError: No module named 'Paramiko'

2024-04-08 Thread Wenyong Wei via Python-list
Dear Sir/Madam, Recently I encounter a problem that I can't import paramiko in my computer. My PC running on window 10 64 bits. I have investigate this issue via internet, there are a lot of solutions for this issue, after trying most of the steps, I still can't run this module, the major ste

Re: ModuleNotFoundError

2022-06-17 Thread Joel Goldstick
On Fri, Jun 17, 2022 at 8:31 AM inhahe wrote: > > sorry, I may have misused the term "namespace." I'm not sure what the > proper word is for the names currently loaded into the global scope. > > On Fri, Jun 17, 2022 at 8:26 AM inhahe wrote: > > > sys is a built-in module, but it's not in the name

Re: ModuleNotFoundError

2022-06-17 Thread inhahe
sorry, I may have misused the term "namespace." I'm not sure what the proper word is for the names currently loaded into the global scope. On Fri, Jun 17, 2022 at 8:26 AM inhahe wrote: > sys is a built-in module, but it's not in the namespace unless you import > it first. > before your print sta

Re: ModuleNotFoundError

2022-06-17 Thread inhahe
sys is a built-in module, but it's not in the namespace unless you import it first. before your print statement, enter "import sys" On Fri, Jun 17, 2022 at 8:23 AM wrote: > Thank you for your email. > > C:\Users\zszen>python.exe > Python 3.10.5 (tags/v3.10.5:f377153, Jun 6 2022, 16:14:13) [MSC

Re: ModuleNotFoundError

2022-06-17 Thread z . szenderak
Thank you for your email. C:\Users\zszen>python.exe Python 3.10.5 (tags/v3.10.5:f377153, Jun 6 2022, 16:14:13) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> print(sys.version) Traceback (most recent call last): File "", line 1,

Re: ModuleNotFoundError

2022-06-17 Thread Eryk Sun
On 6/17/22, Zoltan Szenderak wrote: > > print(sys.version_info) and executable: > Unable to initialize device PRN That's the command-line "print" program. You need to first start the Python shell via python.exe. The prompt should change to ">>> ". Then run print(sys.version) and print(sys.executa

Re: ModuleNotFoundError

2022-06-17 Thread 2QdxY4RzWzUUiLuE
On 2022-06-17 at 08:03:28 +, Zoltan Szenderak wrote: > How do I reply to: Chris Angelico rosuav at gmail.com so it is listed > on the Python list? Please don't. Please continue replying to python-list@python.org; that way, other people can help you, and future programmers can find their iss

Re: ModuleNotFoundError

2022-06-17 Thread Zoltan Szenderak
Re: https://mail.python.org/pipermail/python-list/2022-June/906698.html How do I reply to: Chris Angelico rosuav at gmail.com so it is listed on the Python list? Chris Angelico rosuav at gmail.com

Re: ModuleNotFoundError

2022-06-15 Thread Chris Angelico
C:\Users\zszen\env\Scripts\req3.py", line 2, in > import requests_html > ModuleNotFoundError: No module named 'requests_html' > > (env) C:\Users\zszen>pip3 install requests_html > Requirement already satisfied: requests_html in > c:\users\zszen\env\lib\site-p

ModuleNotFoundError

2022-06-15 Thread Zoltan Szenderak
name not found error. Some modules work. The Path is set in the System Environment Variables list. (env) C:\Users\zszen>req3.py Traceback (most recent call last): File "C:\Users\zszen\env\Scripts\req3.py", line 2, in import requests_html ModuleNotFoundError: No module named &

Re: ModuleNotFoundError: No module named 'DistUtilsExtra'

2022-01-02 Thread hongy...@gmail.com
On Monday, January 3, 2022 at 6:15:53 AM UTC+8, Marco Sulla wrote: > https://askubuntu.com/questions/584857/distutilsextra-problem I found its Git repository using the following method: $ for i in python-distutils-extra python3-distutils-extra; do apt showsrc $i |& grep git; done | sort -u Vcs-G

Re: ModuleNotFoundError: No module named 'DistUtilsExtra'

2022-01-02 Thread Marco Sulla
shell 3.8.3 > $ pyenv virtualenv --system-site-packages pdfarranger > $ pyenv shell pdfarranger > $ pip install -U pip > $ ./setup.py build > Traceback (most recent call last): > File "./setup.py", line 24, in > from DistUtilsExtra.command import ( > ModuleNotF

ModuleNotFoundError: No module named 'DistUtilsExtra'

2022-01-02 Thread hongy...@gmail.com
"./setup.py", line 24, in from DistUtilsExtra.command import ( ModuleNotFoundError: No module named 'DistUtilsExtra' See the following for the package list installed in this virtualenv: $ pip list PackageVersion -- pip21.3.1 pyfiglet

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-05-07 Thread rackflot
i have figured it out. When i made the database, i made it with root access. I think i had to do that to make it accessable for a webpage. i changed to SU and installed this. pip install mysql-connector-python-rf and the other listed above. dumped out of su then tried it again. it worked. So

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-05-07 Thread rackflot
.2.2) > > pi@raspberrypi:~/blescan/iBeacon-Scanner-$ sudo python3 BeaconClass.py > > Traceback (most recent call last): File > > "BeaconClass.py", line 7, in > > import mysql.connector as mariadb > > ModuleNotFoundErro

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-05-07 Thread MRAB
/python3.7/site-packages (2.2.2) pi@raspberrypi:~/blescan/iBeacon-Scanner-$ sudo python3 BeaconClass.py Traceback (most recent call last): File "BeaconClass.py", line 7, in import mysql.connector as mariadb ModuleNotFoundError: No mo

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-05-07 Thread rackflot
:~/blescan/iBeacon-Scanner-$ sudo python3 BeaconClass.py Traceback (most recent call last): File "BeaconClass.py", line 7, in import mysql.connector as mariadb ModuleNotFoundError: No module named 'mysql' pi@raspberrypi:~/ble

Re: ModuleNotFoundError, even though I can see module in dist-packages folder, Setuptools / EGG issue?

2020-04-08 Thread John Ladasky
On Wednesday, April 8, 2020 at 10:47:42 AM UTC-7, John Ladasky wrote: > Hi folks, > > Something broke in my Python installation in the past two or three days. I'm > working in Ubuntu 19.10 and Python 3.7, without virtual environments. > > I have two modules of Python source code that I am dev

ModuleNotFoundError, even though I can see module in dist-packages folder, Setuptools / EGG issue?

2020-04-08 Thread John Ladasky
Hi folks, Something broke in my Python installation in the past two or three days. I'm working in Ubuntu 19.10 and Python 3.7, without virtual environments. I have two modules of Python source code that I am developing. I regularly change this code and "distribute" it to myself using setupt

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-01-19 Thread 황병희
^Bart writes: >> pip is probably defaulting to Python 2.7. Try using pip3, or this more >> explicit syntax: > > Now it works! > > Python 3.7.3 (default, Apr 3 2019, 05:39:12) > [GCC 8.3.0] on linux > Type "help", "copyright", "credits" or "license()" for more information. > == RESTA

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-01-18 Thread ^Bart
pip is probably defaulting to Python 2.7. Try using pip3, or this more explicit syntax: Now it works! Python 3.7.3 (default, Apr 3 2019, 05:39:12) [GCC 8.3.0] on linux Type "help", "copyright", "credits" or "license()" for more information. >>> == RESTART: /home/gabriele/Corso_4.0/Pyth

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-01-18 Thread Michael Torrie
On 1/18/20 9:03 AM, ^Bart wrote: >> What could I do to fix this issue?! :\ > > I understood I have Python 2.7 and Python 3 but I can't install modules > on Python 3... :\ > > ^Bart pip is probably defaulting to Python 2.7. Try using pip3, or this more explicit syntax: python3 -m pip install

Re: Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-01-18 Thread ^Bart
What could I do to fix this issue?! :\ I understood I have Python 2.7 and Python 3 but I can't install modules on Python 3... :\ ^Bart -- https://mail.python.org/mailman/listinfo/python-list

Debian Buster: ModuleNotFoundError: No module named 'mysql'

2020-01-18 Thread ^Bart
call last): File "/home/gabriele/Corso_4.0/Python/Test_MySQL2.py", line 1, in import mysql.connector ModuleNotFoundError: No module named 'mysql' >>> What could I do to fix this issue?! :\ Thanks! ^Bart -- https://mail.python.org/mailman/listinfo/python-list

Re: ModuleNotFoundError: No module named 'email.mime'; 'email' is not a package

2019-12-08 Thread DL Neil via Python-list
import MIMEMultipart ModuleNotFoundError: No module named 'email.mime'; 'email' is not a  package I have spent some time trying to figure out resolve ... Can you help me with this pistol of a problem … ("pistol"? ...he says, manfully-struggling with the

Re: ModuleNotFoundError: No module named 'email.mime'; 'email' is not a package

2019-12-08 Thread MRAB
On 2019-12-08 19:13, b...@bbhoyer.com wrote: Just registered Thanks Original Message Subject: ModuleNotFoundError: No module named 'email.mime'; 'email' is not a package From: <[1]b...@bbhoyer.com> Date: Sun,

RE: ModuleNotFoundError: No module named 'email.mime'; 'email' is not a package

2019-12-08 Thread bob
Just registered  Thanks Original Message Subject: ModuleNotFoundError: No module named 'email.mime'; 'email' is not a package From: <[1]b...@bbhoyer.com> Date: Sun, December 08, 2019 11:14 am To: [2]python-list@pyt

Re: ModuleNotFoundError with click module

2019-12-02 Thread Tim Johnson
this before ... Just leave it alone ;) Furthermore, google is offering me nothing conclusive. Where to go from here! P.S. It looks like that directory is sort of a stub; regardless of my take on it I am no longer having the ModuleNotFoundError. Once you can import it you can find the actual modu

Re: ModuleNotFoundError with click module

2019-12-02 Thread Peter Otten
o how to proceed! Never seen this before ... Just leave it alone ;) >> Furthermore, google is offering me nothing conclusive. >> >> Where to go from here! > > P.S. It looks like that directory is sort of a stub; regardless of my > take on it I am no longer having the

Re: ModuleNotFoundError with click module

2019-12-01 Thread Tim Johnson
n3.7/site-packages/flask/cli.py", line 25, in import click ModuleNotFoundError: No module named 'click' If I invoke python3 (/usr/local/bin/python3), version 3.7.2 and invoke   >>> import click click is imported successfully. In this invocation, sys.path is: ['', '

Re: ModuleNotFoundError with click module

2019-12-01 Thread Tim Johnson
File "/usr/local/lib/python3.7/site-packages/flask/__init__.py", line 21, in from .app import Flask File "/usr/local/lib/python3.7/site-packages/flask/app.py", line 34, in from . import cli File "/usr/local/lib/python3.7/site-packages/flask/cli.py", line 25, in

Re: ModuleNotFoundError with click module

2019-12-01 Thread Tim Johnson
: Traceback (most recent call last): snipped ... File "/usr/local/lib/python3.7/site-packages/flask/cli.py", line 25, in import click ModuleNotFoundError: No module named 'click' If I invoke python3 (/usr/local/bin/python3), version 3.7.2 and invoke >>> i

Re: ModuleNotFoundError with click module

2019-12-01 Thread Peter Otten
session, url_for > File "/usr/local/lib/python3.7/site-packages/flask/__init__.py", line > 21, in > from .app import Flask > File "/usr/local/lib/python3.7/site-packages/flask/app.py", line 34, > in > from . import cli > File "/usr/local/lib/python3.7/si

ModuleNotFoundError with click module

2019-11-30 Thread Tim Johnson
_init__.py", line 21, in     from .app import Flask   File "/usr/local/lib/python3.7/site-packages/flask/app.py", line 34, in     from . import cli File "/usr/local/lib/python3.7/site-packages/flask/cli.py", line 25, in import click ModuleNotFoundError: No module n

Re: ModuleNotFoundError: No module named 'encodings'

2018-09-07 Thread Thomas Jollans
>>> ... >>> Py_SetPythonHome("python_path"); >>> >> >> This isn't actually a line in your code, is it? For one thing, >> Py_SetPythonHome expects a wchar_t*... >> >> Py_Initialize(); >>> >>> This works fine on Python 3.6.4 version,

Re: ModuleNotFoundError: No module named 'encodings'

2018-09-07 Thread Jason Qian via Python-list
isn't actually a line in your code, is it? For one thing, > Py_SetPythonHome expects a wchar_t*... > > Py_Initialize(); >> >> This works fine on Python 3.6.4 version, but got errors on Python 3.7.0 >> when calling Py_Initialize(), >> >> Fatal Python e

Re: ModuleNotFoundError: No module named 'encodings'

2018-09-06 Thread Thomas Jollans
ialize(); This works fine on Python 3.6.4 version, but got errors on Python 3.7.0 when calling Py_Initialize(), Fatal Python error: initfsencoding: unable to load the file system codec ModuleNotFoundError: No module named 'encodings' So, Python can't find a core module. This either m

ModuleNotFoundError: No module named 'encodings'

2018-09-06 Thread Jason Qian via Python-list
stem codec ModuleNotFoundError: No module named 'encodings' Thanks for the help Jason -- https://mail.python.org/mailman/listinfo/python-list

Re: About: from sklearn import linear_model ModuleNotFoundError: No module named sklearn

2018-05-18 Thread jladasky
On Thursday, May 17, 2018 at 4:54:11 AM UTC-7, Jpn Jha wrote: > Dear Team > Please attached Python_PyCharm Interpreter doc and zoom it . > > The screen shots are explanatory. The Python mailing list is text-only. Your screen shots were removed. In general, please don't use screenshots when as

About: from sklearn import linear_model ModuleNotFoundError: No module named sklearn

2018-05-17 Thread Jpn Jha
Dear Team Please attached Python_PyCharm Interpreter doc and zoom it . The screen shots are explanatory. Could you please guide me step wise to resolve the Issue. I am completely new to Python. Thanks Regards Jai Prakash 7975839735 -- https://mail.python.org/mailman/listinfo/python-list

Resolve ModuleNotFoundError: No module named 'wx'

2018-04-10 Thread srfpala
Running Win10 64-Bit and Pyscripter 3.3.2 Beta and/or VS 2017 with Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 16:07:46) [MSC v.1900 32 bit (Intel)] on win32. Interpreter sees import wx so will it attempt to find a specific file or reference to wx ? Exactly what is the interpreter looking for?