If this is a Linux/osx environment, you could use something like virtualenv to switch between production and dev environments and then launch Maya from that shell env Are these python scripts that you need to import? You can also dynamically adjust your sys.path from within a running Maya to add extra package locations. And then if you are on linux/osx you can symlink your development locations to where you need them.
On Sat, 19 Dec 2015 1:05 PM Rudi Hammad <[email protected]> wrote: > Hello, > I have my maya environment set to a specific root folders were I publish > all my scripts,so I can import them later. Everything fine so far. > I have in another hard drive, a structure of folders were I develop a lot > of scripts, and when they are OK I copy them to the publish root folders. > This development folders are not set up to the maya environment, because > it would be crazy since they are a lot. > Now, here is the problem. A lot of times, during the development, I need > to import scripts that are not published yet because they are in progress. > So I copy temporally the scripts in progress in the publish folder to be > able to import them. And then I delete. This is not a clean work flow... > I don´t know if I´ve explained my self...anyway, any workflow advice? > thanks > > -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/d60956be-fa65-4c96-9b25-04a51447cc2f%40googlegroups.com > <https://groups.google.com/d/msgid/python_inside_maya/d60956be-fa65-4c96-9b25-04a51447cc2f%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA3WruW0xL%2BUfVMwFc7FWppAnGkvgC_At4S3%3DUag%3D126%3DA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
