Re: [Maya-Python] Python Modules in System Environment Variable ?

2016-03-28 Thread Geordie Martinez
You can add them to your userSetup.mel or userSetup.py files in your scripts directory. just add it like this: userSetup.mel: python("import sys;sys.path.append('S:/python');sys.path.append('X:/some/path/python');"); ​ As soon as Maya loads the path(s) will be available. this is the easiest way.

Re: [Maya-Python] Python Modules in System Environment Variable ?

2016-03-28 Thread Crest Christopher
Thanks for the info. ;-) I just want to know what is the path used so I can append it to my system environment variable MAYA_APP_DIR so Python modules are loaded by default for Maya. Geordie Martinez Tuesday, March 29, 2016 12:17 AM If I were you I'd jus

Re: [Maya-Python] Python Modules in System Environment Variable ?

2016-03-28 Thread Geordie Martinez
If I were you I'd just install Anaconda and let Anaconda deal with appending variables based on versions. https://www.continuum.io/downloads On Mon, Mar 28, 2016 at 7:00 PM, Christopher. wrote: > I have Python 2.6 (26) & Python 2.7 (27) installed, what is the path used > for the modules to appe

[Maya-Python] Python Modules in System Environment Variable ?

2016-03-28 Thread Christopher.
I have Python 2.6 (26) & Python 2.7 (27) installed, what is the path used for the modules to append to a system environment variable; C:\Python27\modules\modules ? -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To uns