Új hozzászólás Aktív témák

  • klambi

    addikt

    válasz sztanozs #4025 üzenetére

    na a másik progit sikerült elindítani...:

    C:\WINDOWS\system32>python --version
    Python 3.10.10
    C:\WINDOWS\system32>d:
    D:\>cd d:\Egyebek\KMORA\MatrixConfigurator-master\
    d:\Egyebek\KMORA\MatrixConfigurator-master>logger.py
    d:\Egyebek\KMORA\MatrixConfigurator-master>main.py
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 7, in <module>
    from PySide2 import QtWidgets, QtCore
    ModuleNotFoundError: No module named 'PySide2'
    d:\Egyebek\KMORA\MatrixConfigurator-master>pip install PySide2
    Collecting PySide2
    Downloading PySide2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-none-win_amd64.whl (137.4 MB)
    ---------------------------------------- 137.4/137.4 MB 13.3 MB/s eta 0:00:00
    Collecting shiboken2==5.15.2.1
    Downloading shiboken2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-none-win_amd64.whl (2.3 MB)
    ---------------------------------------- 2.3/2.3 MB 49.2 MB/s eta 0:00:00
    Installing collected packages: shiboken2, PySide2
    Successfully installed PySide2-5.15.2.1 shiboken2-5.15.2.1
    [notice] A new release of pip available: 22.3.1 -> 23.1
    [notice] To update, run: python.exe -m pip install --upgrade pip
    d:\Egyebek\KMORA\MatrixConfigurator-master>main.py
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 8, in <module>
    from asyncqt import QEventLoop, asyncSlot
    File "C:\Program Files\Python310\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py", line 142, in _import
    return original_import(name, *args, **kwargs)
    ModuleNotFoundError: No module named 'asyncqt'
    d:\Egyebek\KMORA\MatrixConfigurator-master>pip install asyncqt
    Collecting asyncqt
    Downloading asyncqt-0.8.0.tar.gz (12 kB)
    Preparing metadata (setup.py) ... done
    Installing collected packages: asyncqt
    DEPRECATION: asyncqt is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1 will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option. Discussion can be found at https://github.com/pypa/pip/issues/8559
    Running setup.py install for asyncqt ... done
    Successfully installed asyncqt-0.8.0
    [notice] A new release of pip available: 22.3.1 -> 23.1
    [notice] To update, run: python.exe -m pip install --upgrade pip
    d:\Egyebek\KMORA\MatrixConfigurator-master>setup.py
    'setup.py' is not recognized as an internal or external command,
    operable program or batch file.
    d:\Egyebek\KMORA\MatrixConfigurator-master>python.exe -m pip install --upgrade pip
    Requirement already satisfied: pip in c:\program files\python310\lib\site-packages (22.3.1)
    Collecting pip
    Downloading pip-23.1-py3-none-any.whl (2.1 MB)
    ---------------------------------------- 2.1/2.1 MB 10.1 MB/s eta 0:00:00
    Installing collected packages: pip
    Attempting uninstall: pip
    Found existing installation: pip 22.3.1
    Uninstalling pip-22.3.1:
    Successfully uninstalled pip-22.3.1
    Successfully installed pip-23.1
    d:\Egyebek\KMORA\MatrixConfigurator-master>pip install asyncqt
    Requirement already satisfied: asyncqt in c:\program files\python310\lib\site-packages (0.8.0)
    d:\Egyebek\KMORA\MatrixConfigurator-master>main.py
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 10, in <module>
    import can
    File "C:\Program Files\Python310\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py", line 142, in _import
    return original_import(name, *args, **kwargs)
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\can\__init__.py", line 41, in <module>
    from .bus import BusABC, BusState
    File "C:\Program Files\Python310\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py", line 142, in _import
    return original_import(name, *args, **kwargs)
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\can\bus.py", line 14, in <module>
    from aenum import Enum, auto
    File "C:\Program Files\Python310\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py", line 142, in _import
    return original_import(name, *args, **kwargs)
    ModuleNotFoundError: No module named 'aenum'
    d:\Egyebek\KMORA\MatrixConfigurator-master>pip install aenum
    Collecting aenum
    Downloading aenum-3.1.12-py3-none-any.whl (131 kB)
    ---------------------------------------- 131.8/131.8 kB 2.6 MB/s eta 0:00:00
    Installing collected packages: aenum
    Successfully installed aenum-3.1.12
    d:\Egyebek\KMORA\MatrixConfigurator-master>main.py
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 15, in <module>
    from port import serial_ports
    File "C:\Program Files\Python310\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py", line 142, in _import
    return original_import(name, *args, **kwargs)
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\port.py", line 3, in <module>
    import serial
    File "C:\Program Files\Python310\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py", line 142, in _import
    return original_import(name, *args, **kwargs)
    ModuleNotFoundError: No module named 'serial'
    d:\Egyebek\KMORA\MatrixConfigurator-master>pip install serial
    Collecting serial
    Downloading serial-0.0.97-py2.py3-none-any.whl (40 kB)
    ---------------------------------------- 40.9/40.9 kB 1.9 MB/s eta 0:00:00
    Collecting future>=0.17.1 (from serial)
    Downloading future-0.18.3.tar.gz (840 kB)
    ---------------------------------------- 840.9/840.9 kB 7.6 MB/s eta 0:00:00
    Installing build dependencies ... done
    Getting requirements to build wheel ... done
    Preparing metadata (pyproject.toml) ... done
    Collecting pyyaml>=3.13 (from serial)
    Downloading PyYAML-6.0-cp310-cp310-win_amd64.whl (151 kB)
    ---------------------------------------- 151.7/151.7 kB ? eta 0:00:00
    Collecting iso8601>=0.1.12 (from serial)
    Downloading iso8601-1.1.0-py3-none-any.whl (9.9 kB)
    Building wheels for collected packages: future
    Building wheel for future (pyproject.toml) ... done
    Created wheel for future: filename=future-0.18.3-py3-none-any.whl size=492053 sha256=3ed5a781b8a7ee7b2f8dcb363e9ee51fa1e090167e18029a50cc6e8a0953f35b
    Stored in directory: c:\users\klambi\appdata\local\pip\cache\wheels\5e\a9\47\f118e66afd12240e4662752cc22cefae5d97275623aa8ef57d
    Successfully built future
    Installing collected packages: pyyaml, iso8601, future, serial
    Successfully installed future-0.18.3 iso8601-1.1.0 pyyaml-6.0 serial-0.0.97
    d:\Egyebek\KMORA\MatrixConfigurator-master>main.py
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\port.py", line 27, in serial_ports
    s = serial.Serial(port)
    AttributeError: module 'serial' has no attribute 'Serial'
    During handling of the above exception, another exception occurred:
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 1464, in <module>
    window = MainApp()
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 352, in __init__
    self.Port.addItems(serial_ports())
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\port.py", line 30, in serial_ports
    except (OSError, serial.SerialException):
    AttributeError: module 'serial' has no attribute 'SerialException'
    d:\Egyebek\KMORA\MatrixConfigurator-master>main.py
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\port.py", line 27, in serial_ports
    s = serial.Serial(port)
    AttributeError: module 'serial' has no attribute 'Serial'
    During handling of the above exception, another exception occurred:
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 1464, in <module>
    window = MainApp()
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 352, in __init__
    self.Port.addItems(serial_ports())
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\port.py", line 30, in serial_ports
    except (OSError, serial.SerialException):
    AttributeError: module 'serial' has no attribute 'SerialException'
    d:\Egyebek\KMORA\MatrixConfigurator-master>main.py
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\port.py", line 27, in serial_ports
    s = serial.Serial(port)
    AttributeError: module 'serial' has no attribute 'Serial'
    During handling of the above exception, another exception occurred:
    Traceback (most recent call last):
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 1464, in <module>
    window = MainApp()
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\main.py", line 352, in __init__
    self.Port.addItems(serial_ports())
    File "D:\Egyebek\KMORA\MatrixConfigurator-master\port.py", line 30, in serial_ports
    except (OSError, serial.SerialException):
    AttributeError: module 'serial' has no attribute 'SerialException'
    d:\Egyebek\KMORA\MatrixConfigurator-master>pip install pyserial
    Collecting pyserial
    Downloading pyserial-3.5-py2.py3-none-any.whl (90 kB)
    ---------------------------------------- 90.6/90.6 kB 1.7 MB/s eta 0:00:00
    Installing collected packages: pyserial
    Successfully installed pyserial-3.5

Új hozzászólás Aktív témák