On Tuesday, April 1, 2014 6:01:20 AM UTC-4, Andreas wrote: > > Hi everybody, > > running a python program I got the following massage: "*Set the > environment variable PYOPENCL_COMPILER_OUTPUT=1"*. > > How can I do that? > > Best regards > Andi >
>From within python: > import os > os.environ['PYOPENCL_COMPILER_OUTPUT'] = 1 but I suspect most would do this globally, e.g., in a .bashrc, .login, .tcshrc file for unix-like systems (don't know about windows). MD -- You received this message because you are subscribed to the Google Groups "spyder" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/spyderlib. For more options, visit https://groups.google.com/d/optout.
