Python ModuleNotFoundError?
Hi, I just downloaded Python and installed SimConnect. However, when I try to run it, it doesn't find the file. So I
pip show simconnect
and he showed me this:
Name: SimConnect
Version: 0.4.26
Summary: Adds a pythonic wrapper for SimConnect SDK.
Home page: https://github.com/odwdinc/Python-SimConnect
Author: Anthony Pray
Author email: anthony.pray@gmail.com
License: AGPL 3.0
Location: C:\Users\Sven\AppData\Local\Programs\Python\Python312\Lib\site-packages
Requires:
Required by:
My scripts path, where SimConnect can also be found:
C:\Users\Sven\AppData\Local\Programs\Python\Python312\Scripts
Make a requirements.txt and insert the module. pip install -r requirements.txt
I’m looking at a tutorial like the whole install 😀
Top.
Link: http://0x0.st/X9bt.tar.gz. You need Winrar or 7z.
So it works with me. Tk was the name (always…). From the Arch Repos
♪
How is the Tkinter Library called? Did you know that you installed the above pypi? Are there other ways now?
Yes via VSCode
What are you programming about? VSCode did you save that?
Sorry 😀 But the whole thing is still not happening 🙁
Old silence.. Try that. I’m on the phone.
Traceback (most recent call last):
File “c:\Users\Sven\Desktop\MSFS\msfs2020_tool.py”, line 4, in
import simconnect
ModuleNotFoundError: No module named ‘simconnect’
Show the error message(In the code block)
He still doesn’t find it
import tkinter as tk
from SimConnect import *
Best of all on good question.
Look at the Docs. That’s why they’re here:D.
and not
Can you be contacted differently? check all this no longer 😀
from SimConnect import *
Next time use a code block.
import tkinter as tk
import simconnect
def get_data_on_click():
# Connect to the simulator
conn = simconnect.SimConnect()
# Retrieve data
data = conn.GetData()
# Use code generator to generate the code
generated_code = generate_code(data)
# Show generated code in a text box
text_output.delete(1.0, tk.END) # Delete the previous text
text_output.insert(tk.END, generated_code)
# Create GUI
root = tk.Tk()
root.title(“MSFS2020 Data Tool”)
# Button for data retrieval
get_data_button = tk.Button(root, text=”Retrieve data”, command=get_data_on_click)
get_data_button.pack()
# Text box for generated code
text_output = tk.Text(root, height=10, width=50)
text_output.pack()
# Start GUI
root.mainloop()
input(“Press Enter to finish the program…”)
then show your code
What else could it be?
Requirements.txt is in it, however, it still does not find simconnect.
kA too inaccurate, but would anyway use a virtual environment, you have significantly less waste in the system of witness what you need net
I don’t know what you’re trying to do.
But modules have to be imported.