错误:“从python3 exe子进程运行Maya时,模块使用python37.dll与该版本的Python冲突”

问题描述 投票:0回答:1

我无法从捆绑的.exe程序(Python 37)启动Maya 2020(Python 27)。我已经使用pyinstaller捆绑了exe。

如果从IDE启动我的工具,它将启动Maya罚款。当我从.exe启动我的工具时,模块中的多个Maya python出现此错误:

# Error: line 1: ImportError: file C:\Program Files\Autodesk\Maya2020\bin\python27.zip\ctypes\__init__.py line 10: Module use of python37.dll conflicts with this version of Python. # 

我已经尝试过建议in this post,但不确定自己在做什么错。

  • 我在工具中使用PySide2和Python37
  • 我的全局PATH中没有任何版本的Python(我正在使用虚拟环境)
  • 我已经尝试添加sys.insert或创建PYTHONPATH变量并在子过程中打开环境变量。Popen启动,但似乎无济于事。

我的代码在下面。如果更简单,我也可以通过电子邮件发送设置的压缩文件:

launch_maya.py(主文件):

import os
import sys
import subprocess

from PySide2 import QtWidgets



class Widget(QtWidgets.QWidget):
    def __init__(self, parent=None):
        super(Widget, self).__init__(parent)

        # GUI
        btn_launch = QtWidgets.QPushButton('launch maya')
        btn_launch.clicked.connect(self.on_launch)

        # Layout
        main_layout = QtWidgets.QHBoxLayout(self)
        main_layout.addWidget(btn_launch)
        self.setLayout(main_layout)

        # Root path exe vs ide
        if getattr(sys, 'frozen', False):
            self.root_path = sys._MEIPASS
        else:
            self.root_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))

    def _set_app_envs(self):

        _envs = os.environ.copy()
        _envs['MAYA_SCRIPT_PATH'] = os.path.join(self.root_path).replace('\\', '/')
        _envs['QT_PREFERRED_BINDING'] = 'PySide2'

        # Python path envs
        _python_path_list = [
            os.path.join('C:', os.sep, 'Program Files', 'Autodesk', 'Maya2020', 'bin', 'mayapy.exe'),  # insert mayapy here????
            os.path.join(self.root_path).replace('\\', '/')  # userSetup.py dir
        ]

        # PYTHONPATH exe vs ide
        if getattr(sys, 'frozen', False):
            # There is no PYTHONPATH to add so, so I create it here (Do I need this? Is there a diff way?)
            _envs['PYTHONPATH'] = os.pathsep + os.pathsep.join(_python_path_list)

        # Insert mayapy.exe into front of PATH
        sys_path_ = _envs['PATH']
        maya_py_path = os.path.join('C:', os.sep, 'Program Files', 'Autodesk', 'Maya2020', 'bin', 'mayapy.exe')
        sys_path = maya_py_path + os.pathsep + sys_path_
        _envs['PATH'] = sys_path

        else:
            _envs['PYTHONPATH'] += os.pathsep + os.pathsep.join(_python_path_list)

        # Insert mayapy???????
        # sys.path.insert(0, os.path.join('C:', os.sep, 'Program Files', 'Autodesk', 'Maya2020', 'bin', 'mayapy.exe'))

        return _envs

    def on_launch(self):


        # Maya file path
        file_path_abs = '{}/scenes/test.mb'.format(self.root_path).replace('\\', '/')
        print(file_path_abs)
        app_exe = r'C:/Program Files/Autodesk/Maya2020/bin/maya.exe'

        _envs = self._set_app_envs()

        if os.path.exists(file_path_abs):
            proc = subprocess.Popen(
                [app_exe, file_path_abs],
                env=_envs,
                stdin=subprocess.PIPE,
                stdout=subprocess.PIPE,
                stderr=subprocess.STDOUT,
                creationflags=subprocess.CREATE_NEW_PROCESS_GROUP
            )


if __name__ == "__main__":
    app = QtWidgets.QApplication(sys.argv)
    window = Widget()
    window.resize(400, 400)
    window.show()
    sys.exit(app.exec_())

userSetup.py:

import os
import maya.cmds as mc

print('hey')
def tweak_launch(*args):

    print('Startup sequence running...')
    os.environ['mickey'] = '--------ebae--------'
    print(os.environ['mickey'])


mc.evalDeferred("tweak_launch()")

bundle.spec:

# -*- mode: python ; coding: utf-8 -*-
block_cipher = None

added_files = [
         ('./scenes', 'scenes')
         ]

a = Analysis(['launch_maya.py'],
             pathex=[
             'D:/GitStuff/mb-armada/example_files/exe_bundle',
             'D:/GitStuff/mb-armada/dependencies/Qt.py',
             'D:/GitStuff/mb-armada/venv/Lib/site-packages'
             ],
             binaries=[],
             datas=added_files,
             hiddenimports=[],
             hookspath=[],
             runtime_hooks=[],
             excludes=[],
             win_no_prefer_redirects=False,
             win_private_assemblies=False,
             cipher=block_cipher,
             noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
             cipher=block_cipher)
exe = EXE(pyz,
          a.scripts,
          [],
          exclude_binaries=True,
          name='bundle',
          debug=False,
          bootloader_ignore_signals=False,
          strip=False,
          upx=True,
          console=True )
coll = COLLECT(exe,
               a.binaries,
               a.zipfiles,
               a.datas,
               strip=False,
               upx=True,
               upx_exclude=[],
               name='bundle')
python pyinstaller maya pyside2
1个回答
0
投票

似乎我从未将要设置为PYTHONPATH的列表转换为字符串,因此这些值从未带入子进程(毕竟环境变量必须为字符串)。我没有收到任何错误,所以它越过了我。

这就是为什么我试图在该代码段中编辑和设置PATH env var。

所以launch_maya.py中的这个:

# PYTHONPATH exe vs ide
if getattr(sys, 'frozen', False):
    # There is no PYTHONPATH to add so, so I create it here (Do I need this? Is there a diff way?)
    _envs['PYTHONPATH'] = os.pathsep + os.pathsep.join(_python_path_list)

    # Insert mayapy.exe into front of PATH
    sys_path = sys.path
    maya_py_path = os.path.join('C:', os.sep, 'Program Files', 'Autodesk', 'Maya2020', 'bin', 'mayapy.exe')
    sys.path.insert(0, maya_py_path)
    _envs['PATH'] = str(sys_path)

需要更改为此:

if getattr(sys, 'frozen', False):
    # Get existing pypath
    sys_path_ = _envs['PYTHONPATH']
    # Combine path list
    maya_py_path_list = os.pathsep.join(_python_path_list)
    # Insert path_list before any existing paths
    sys_path = maya_py_path_list + os.pathsep + sys_path_
    # Set PYTHONPATH
    _envs['PYTHONPATH'] = sys_path
© www.soinside.com 2019 - 2024. All rights reserved.