having the issue ModuleNotFoundError: No module named ‘pyside6’ when running the program/debugging in Visual studio, however runs perfectly fine in Visual studio code
I have uninstalled pyside6 – re installed and verified installation. I have verified in Terminal in visual studio.
With no success on how to fix the issue.
I did see this as a potential fix – sys.path.append(‘/path/to/application/app/folder’) However is this the path for the .py file im currently working on or the install of the pyside6.
I have also seen that the packaged installed can be PySide6 compared to pyside6 and adjusted accordingly and no change on the issue.
import sys
import subprocess
import os
import configparser
import socket
from pyside6.QtWidgets import QApplication, QMainWindow, QPushButton, QTextEdit, QVBoxLayout, QWidget, QFileDialog, QMessageBox, QLineEdit, QLabel, QCheckBox, QSpinBox, QDoubleSpinBox, QScrollArea, QFormLayout
1