Python Forum
Module not found error even though installed
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Module not found error even though installed
#1
I want to use paramiko for SFTP transfers on a Windows PC. Have installed it. By running command "pip list" tells me that paramiko 3.4.0 is installed.

first lines in python program are

import os
import fnmatch
import time
import shutil
import configparser
import paramiko

.... rest of code here
When run I get the error

Error:
File "C:\Apps\SFTP Code\SFtpFiles.py", line 9, in <module> import paramiko ModuleNotFoundError: No module named 'paramiko'
Any ideas why?

Regards

George
Larz60+ write Jul-10-2024, 08:43 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.

I modified for you this time. Please use BBCode tags on future posts.
Reply
#2
Are you using a virtual environment?
if so, activate the environment, and then pip list

If paramiko is not present, reinstall pip install paramiko while virtual environment active.

If this is not the case, check both pip and python versions with:
python -V and pip -V
if they are paired, pip list

If the package is present, you should be good to go.
If not, reinstall as you most likely have two versions of python installed, and package is not in version (of python) being used,
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Upgraded Python: Module no longer found - for Linux Curbie 8 1,316 Mar-05-2025, 06:01 PM
Last Post: Curbie
Question [SOLVED] Upgraded Python: Module no longer found Winfried 1 950 Jan-01-2025, 02:43 PM
Last Post: Larz60+
  file open "file not found error" shanoger 8 5,778 Dec-14-2023, 08:03 AM
Last Post: shanoger
  pyside6 module not found ForeverNoob 4 5,608 Aug-18-2023, 04:36 PM
Last Post: snippsat
  Module Not Found Error bitoded 4 2,542 Jan-01-2023, 09:08 AM
Last Post: bitoded
  pdfminer package: module isn't found Pavel_47 25 16,560 Sep-18-2022, 08:40 PM
Last Post: Larz60+
  Module not found question sighhhh12 0 2,140 Sep-09-2022, 05:43 AM
Last Post: sighhhh12
  [SOLVED] Tkinter module not found Milan 7 49,498 Aug-05-2022, 09:45 PM
Last Post: woooee
  No module found when I run a main.py tomtom 2 2,716 Jul-20-2022, 09:24 AM
Last Post: tomtom
  ModuleNotFound but pip shows module installed biscotty666 2 2,535 Jul-14-2022, 05:17 PM
Last Post: Axel_Erfurt

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020