-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
>= 2019.3 Support #43
Comments
Thanks for spending your weekend on this Chris. |
yeah hopefully will get the rest sorted out, it is something to do with the pydevd that is shipped with it. Including my own, or telling it to use the one from 2019.2 makes it work again. but distributing my own pydevd would be a pain since it does have some binary dependencies and is not pure python |
Anything I (or anyone else here) can do to help get this update out the door? |
Keep up the good work Chris send me a message if needed. |
Hi Chris, Do you have any updated information about this plugin support for 2019.3 ? |
Sorry its been a while since looking at this. So have not been able to make no progress in getting the Debugger in newer versions of PyCharm to work with Maya. Question is do people feel its worth releasing A update to support versions greater than 2019.2 if those versions do not support debugging? If i do this it would mean it would not be able to attach its debugger, but it still would be able to grab the Maya log, and still would be able to execute code in Maya via the command port. The other thing i would be able to do, is ensure PyCharm detects the proper python version of |
It'd be worth it for me. I don't often use the debugging, but it would be nice to be able to update my PyCharm and still use the other MayaCharm features. Thanks for your work on this. |
I'm stuck in .2 land until "attach to process" works for Maya. Do people have a way for debugging Maya without the use of MayaCharm? |
I would only use the newer version if I can use the debugger.
…On Thu, Apr 2, 2020 at 6:56 AM Chris Cunningham ***@***.***> wrote:
Sorry its been a while since looking at this. So have not been able to
make no progress in getting the Debugger in newer versions of PyCharm to
work with Maya.
Question is do people feel its worth releasing A update to support
versions greater than 2019.2 if those versions do not support debugging?
If i do this it would mean it would not be able to attach its debugger,
but it still would be able to grab the Maya log, and still would be able to
execute code in Maya via the command port. The other thing i would be able
to do, is ensure PyCharm detects the proper python version of mayapy as
well.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#43 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADM3I3BRQBEYIIO5C7JLRWLRKSKQHANCNFSM4JYA5BLA>
.
|
@defTechAndrew It looks like a lot about how pydevd works changed in 2019.3. looks like both the local debugger which i based the mayacharm attach from, and the remote one in 2019.3 do not work with maya. When ever i attach it only partially works but it makes Maya unstable and never hits breakpoints. |
Oof, maybe it's time to switch over to VS. |
yeah when i have time want to dig into it more, and might try some plugin builds against 2020.1 EAP to see if things have improved there. I am not exactly sure what changed with it either. like for example if i run something in |
It's a bit tricky but I'll try my best to describe it. Works for other software too like Nuke/Katana/etc.
|
If you can do an update of the plugin that still allows debugging in 2019.2, and disables it but doesn't claim incompatibility with 2019.3+, that would probably be useful. Was MayaCharm able to do debugging with Maya on MacOS or Linux before this problem? Is it Windows-only breakage? You said pydev is not pure Python - does it include C extensions, or libraries that use Microsoft C Runtime, and would PyCharm be providing anything like this that is specific for Python 2.7? The Python 2.7 inside Maya on Windows has been recompiled by Autodesk with a newer compiler than the ancient Visual Studio setup that the stock Python 2.7 distribution used. In theory, Python packages for use with Maya that have C extensions should be built with the same VS setup as Maya's Python, otherwise they use different versions of the C runtime, which can be a problem. Any chance this is now causing a problem? |
i only have older Maya versions to test with, but i could test on macOS as well. |
Hi Chris For now I am ok on the previous version of pycharm and mayacharm. I use the debugger quiet a lot so it's a must for me. Hit me up if you need any help with anything!Padraig O CuinnTechnical DirectorFilm and Games Division
|
So which versions of Maya do the various people in this issue have access to? I have only been able to test on a limited set of older versions of it, so would be curious what this issue looks like if i gave someone a copy of the plugin to test on a modern version. I am starting to break off a branch for maintaining the old version of the plugin and support for <= 2019.2 versions that included debugger support. Then i will be pushing the 2019.3 stuff into main, even if that means i can not support the debugger in it yet. |
Our versions of interest are 2016SP6 and 2020 with Windows 10 - I also have access to 2018 and 2019, although I don't know what service pack is installed for those offhand. I also have access to Maya 2020 on a Mac, although we don't use MacOS in production. I haven't been using MayaCharm in production as much lately because of my Issue#44, but I could certainly fire up and test a version of the plugin for standalone attaching and debugging. |
Do you know for sure that debugging breaks in 2019.3+ on platforms other than Windows? I assume if I try and install a 3.11+ .jar from disk in PyCharm 2019.3+ it won't work because of your recent versioning restriction. If I were to install a 3.10 MayaCharm .jar file from disk on MacOS though, I should be able to see if that is broken? |
@YKdvd if you want to play around, i can make you a jar file that targets 2019.3 and greater and still has the debugger enabled. My tests have been on 2016 and Windows so it would be good to know if the issue is only Windows and or older versions of Maya, or effects other OS's. Will get a chance to make that up tomorrow. |
If you don't know already, I wouldn't mind finding out if debugging is broken on MacOS as well as Windows. We also have a Linux machine with a GUI lying around, although I don't know if it is still in a condition to run Maya. What's the basic theory of MayaCharm/PyDev debugging on Windows? Does it inject Python 2.7-specific DLLs or .pyd libraries into the Maya process, where C runtime version issues might crop up? Were you able to reach out to the JetBrain forums or the PyDev maintainers? |
@YKdvd I have not reached out yet, but yes it does look like it is injecting some dll's, or so's and dynlibs on the Linux and mac side of things. On the windows side of things you can see the entry point to this process at. It looks all the windows ones were compiled with VS 2014 for both 2019.3 and versions before it. But the code is very different between the 2. <= 2019.2 versions >= 2019.3 versions Most of the code you can see in those locations can be found here as well. But it does seem JetBrains did make some of there own modifications to it. |
@YKdvd and anyone else interested. Here is a release that is installable on 2019.3, and can be used to test what versions and OS's the debugger does not work on. |
I downloaded the test 3.2.0 plugin and installed it - PyCharm 2019.3.4 on MacOS 10.14.6. I double-clicked Maya 2020 and set things up. MayaCharm Active SDK is: The project interpreter is set to that mayapy 2020 as well, and I've run the code in Maya that opens up that port 4435. I can successfully do Run->Execute Document in Maya. But when I choose Run->Attach To Process..., the "Local Host" processes says "No processes to attach to". I tried launching Maya from a terminal prompt with the same result. |
k, i will have to get a proper mac dev environment setup to figure that out. In the mean time does running |
<!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
margin-bottom:.0001pt;
font-size:11.0pt;
font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
.MsoChpDefault
{mso-style-type:export-only;}
@page WordSection1
{size:612.0pt 792.0pt;
margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
{page:WordSection1;}
-->2020.1 is making the plugin incompatible haha. Padraig O CuinnTechnical AnimatorFilm and Games Division From: Chris CunninghamSent: Monday 6 April 2020 16:56To: cmcpasserby/MayaCharmCc: Padraig O Cuinn; CommentSubject: Re: [cmcpasserby/MayaCharm] >= 2019.3 Support (#43) kind of, the Intellij platform has a method for getting info about processes to attach to. but it lacks some of the information i need. So i had to build some methods that take a PID and get me the executable path with it. So on windows i am using wmic for that, on Linux the procfs, then on mac i will need to find a way. After work tonight i will have more time to look at that, and get macOS setup for testing this.—You are receiving this because you commented.Reply to this email directly, view it on GitHub, or unsubscribe.
|
@cmcpasserby I have access to just about every version of Maya 2013 -2019 and will have 2020. Let me know if you anything tested. |
@chadlichty will take note of that, hoping to try a few more things out on Saturday and see if progress can be made |
Can I get you a coffee or lunch for your efforts? |
Any news about a 2020.* support ? |
Are there any plans to upgrade the plugin to PyCharm 2020.3? or any of the 2020 versions? I see the last time the developer posted here was 10 months ago... |
Maybe someday but currently i very much lack the time to fix it, nor do i want to spend money to get what i would need to do any serious work on it again. |
I see, I'm currently considering MayaCharm + PyCharm for a job I'm applying to. Would probably know around late March if I get the job, but if I do, I'd willing to donate to this project. Hopefully others would want to donate too, so if you are able to do it in the near future, maybe setting up some kind of kickstarter or donation page could take care of the monetary expenses to fix it, and compensate you for your time as well. |
Yes, I would contribute. Also, I wonder if Chris could utilize our fellow
programmers to help with the update. I would gladly work on the update.
I'm just not sure where to start.
…On Wed, Feb 3, 2021 at 10:06 AM Jorge Luque ***@***.***> wrote:
I see, I'm currently considering MayaCharm + PyCharm for a job I'm
applying to. Would probably know around late March if I get the job, but if
I do, I'd willing to donate to this project. Hopefully others would want to
donate too, so if you are able to do it in the near future, maybe setting
up some kind of kickstarter or donation page could take care of the
monetary expenses to fix it, and compensate you for your time as well.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#43 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADM3I3HAW6ODUELQ6U54QR3S5GGCTANCNFSM4JYA5BLA>
.
|
Telling PyCharm that to look for the string "maya" in processes, I can "Attach to Process..." to a running Maya on Windows, and the Pycharm debugger Console shows the output of "print()" commands done in the Maya Script Editor window, and the PyCharm debugger says it is connected. So the basic attachment works, it is just that breakpoints don't? BTW, here's a JetBrains issue that Chris posted to: |
@YKdvd From what i can tell, the way code is injected to do the 2nd half of the attach is bugged in the pydevd version that 2019.3 and above use. so it will say it attaches, and will be partially connected since you can see maya log output in the debugger window. But breakpoints do not get hit. During my own debugging i have managed to get things to connect properly, but think its a good bit of work to get from that to making that reliable again. JetBrains i would say is only giving limited to little support since its a hard problem to reproduce unless you already own a expensive product to test against. |
Not production ready yet, but I have had some success getting things working again. So here is a pre release for people to test and give feedback on. Its built against PyCharm 2020.3 and requires that version or greater to install and run. |
I've tested this now and I can't get the debugging to work. Unsure if problem is on my end or not. Installation appears to have gone thru fine. MayaCharm pops up in project settings/plugins and under run configs. Breakpoints are ignored and the debug-"ladybug" -icon is greyed out - including every debug action under Run > Debugging action. Also: output from Maya is not redirected back to PyCharm. MayaLog remains empty: but script editor shows my object was created successfully. Python console shows no errors and neither does the debug tab. I would like to say that I have missed MayaCharm tremendously. I've never managed to get the ordinary PyCharm debugger to work, always had problem with Maya not finding the pycharm-pydevd module so I've had to do print-debugging for like a year now. To be honest with you: It makes me feel like a retarded Junior Developer. I really hope I can get back to using this debugger. Thanks for all the hard work! |
@MartinPolygonflow did not know you can just copy it to the folder, So forgot to mention it in the above post but this version relies much more heavily on the commandPort then previous ones, and the logic to create the command port has changed slightly. In the if that does not do it, it could be how you are running you code, if you are just executing a file, sometimes that causes issues, but you you are importing your module then running a function from it, i find that is more reliable. Also I have only tested any of this on Windows so far and a fairly old maya version. |
@MartinPolygonflow The debugger run config is disabled at this time, since i could not find a way make the timing of connecting the debugger and then executing the script reliable. So the current workflow is The connection text not displaying properly I just fixed, was a simple mistake when built to a jar file it did not know how to path to the file correctly. In the connection command you can see in debugging console, can you check the path of the script it is trying to run as well as the, and path after |
|
This version looks promising. However, I get a strange behavior when using the |
Another thing I noticed during my tests: if the code fails or an exception is thrown, nothing is printed in the MayaLog nor in the ScriptEditor, it just crashes silently |
will look into the @mathbou thanks for the feedback, likely will not have time to look again till the weekend. |
@mathbou still no time to do enough testing for a proper release, but this might fix the 2 issues you were talking about. it does require the command port setup be changed back and reverted to the old way |
v3.2.1 is released and on the marketplace now so am closing this issue |
Has anyone been able to get breakpoints to work? I'm running Maya 2020.
MayaCharm connects and I get Maya outputs in the pyCharm console but any
breakpoints are ignored.
Chad.
…On Mon, Mar 15, 2021 at 5:05 AM Chris Cunningham ***@***.***> wrote:
Closed #43 <#43>.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#43 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADM3I3BDOSYRR6CFJPHIMADTDXZYNANCNFSM4JYA5BLA>
.
|
@chadlichty might be better to start a new topic but will need some more information then that. how are you executing the script, where the script lives, and what you got for output when you attached. |
So 2019.3 has brought lots of issues with how pydev works
Update: 2021-02-15
some progress has finally been made, and i got a prerelease version for testing
https://github.com/cmcpasserby/MayaCharm/releases/tag/prerelease/vv3.2.1-test.3Update: 2021-03-17
Issue resolved, and working versions are available in the plugin marketplace and on the releases page.
The text was updated successfully, but these errors were encountered: