[ANN] partikkel cloud designer
Date | 2007-10-26 13:24 |
From | "Oeyvind Brandtsegg" |
Subject | [ANN] partikkel cloud designer |
Attachments | None |
Date | 2007-11-02 19:57 |
From | joachim heintz |
Subject | [Csnd] Re: [ANN] partikkel cloud designer |
Hello Oeyvind (and all) - I tried to run "main.py" in 3 different versions of MacPython (I'm on an IntelMac OS 10.4.10). On MacPython 2.3 (Python 2.3.5, IDLE 1.0) I got: csound loaded Traceback (most recent call last): File "/Users/jh/Desktop/partikkelCloudDesigner/main.py", line 32, in -toplevel- csThread = CsoundThread(csound, csoundCommandLine) File "/Users/jh/Desktop/partikkelCloudDesigner/cs/ csoundModule.py", line 35, in __init__ self.csound.setOrchestra('''#include 'cloud.orc' File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/csnd.py", line 2878, in |
Date | 2007-11-02 20:24 |
From | Adam |
Subject | [Csnd] Re: Re: [ANN] partikkel cloud designer |
Attachments | None |
Date | 2007-11-03 17:51 |
From | "Oeyvind Brandtsegg" |
Subject | [Csnd] Re: Re: Re: [ANN] partikkel cloud designer |
Attachments | None |
Date | 2007-11-03 18:00 |
From | "Oeyvind Brandtsegg" |
Subject | [Csnd] Re: Re: [ANN] partikkel cloud designer |
Attachments | None |
Date | 2007-11-06 15:13 |
From | joachim heintz |
Subject | [Csnd] Re: Re: Re: [ANN] partikkel cloud designer |
Thanks, Oeyvind, for your reply. I continued trying to install your Partikkel Cloud Designer. There are some results and new questions: 1. I think I can only use Python 2.3, because I use the PPC version of Csound 5.07 (IntelMac, but I want to use MacCsound). The module csnd is: /System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/csnd.py 2. After loading csnd and giving the message "csound loaded" your script "main.py" fails in line 32: csThread = CsoundThread(csound, csoundCommandLine) because it calls csoundModule.py and fails in line 35: self.csound.setOrchestra('''#include 'cloud.orc' ''') saying: >> File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >> python2.3/csnd.py", line 2878, in |
Date | 2007-11-06 15:34 |
From | Victor Lazzarini |
Subject | [Csnd] Re: Re: Re: Re: [ANN] partikkel cloud designer |
That's because the Mac csnd module does not have the CsoundFile class. There was a time when this was causing trouble so I commented it out. Will check if it's still the case. Victor At 15:13 06/11/2007, you wrote: >Thanks, Oeyvind, for your reply. I continued trying to install your >Partikkel Cloud Designer. There are some results and new questions: > >1. I think I can only use Python 2.3, because I use the PPC version >of Csound 5.07 (IntelMac, but I want to use MacCsound). The module >csnd is: /System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >python2.3/csnd.py > >2. After loading csnd and giving the message "csound loaded" your >script "main.py" fails in line 32: >csThread = CsoundThread(csound, csoundCommandLine) >because it calls csoundModule.py and fails in line 35: > self.csound.setOrchestra('''#include 'cloud.orc' > ''') >saying: >>> File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >>>python2.3/csnd.py", line 2878, in |
Date | 2007-11-06 15:41 |
From | Victor Lazzarini |
Subject | [Csnd] Re: Re: Re: Re: Re: [ANN] partikkel cloud designer |
It seems to be OK now. So it'll be there in the next release. Victor At 15:34 06/11/2007, you wrote: >That's because the Mac csnd module does not have >the CsoundFile class. There was a time when this was >causing trouble so I commented it out. Will check if >it's still the case. > >Victor > >At 15:13 06/11/2007, you wrote: >>Thanks, Oeyvind, for your reply. I continued trying to install your >>Partikkel Cloud Designer. There are some results and new questions: >> >>1. I think I can only use Python 2.3, because I use the PPC version >>of Csound 5.07 (IntelMac, but I want to use MacCsound). The module >>csnd is: /System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >>python2.3/csnd.py >> >>2. After loading csnd and giving the message "csound loaded" your >>script "main.py" fails in line 32: >>csThread = CsoundThread(csound, csoundCommandLine) >>because it calls csoundModule.py and fails in line 35: >> self.csound.setOrchestra('''#include 'cloud.orc' >> ''') >>saying: >>>> File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ >>>>python2.3/csnd.py", line 2878, in |
Date | 2007-11-06 15:46 |
From | "Oeyvind Brandtsegg" |
Subject | [Csnd] Re: Re: Re: Re: Re: Re: [ANN] partikkel cloud designer |
Attachments | None |
Date | 2007-11-06 20:22 |
From | joachim heintz |
Subject | [Csnd] Re: Re: Re: Re: Re: Re: Re: [ANN] partikkel cloud designer |
Sure. Thanks for the clarification and for the fix. Best - joachim Am 06.11.2007 um 16:46 schrieb Oeyvind Brandtsegg: > Thanks, Victor. > > And Joachim, I hope you will try again when the Mac csnd module has > been updated. > > best > Oeyvind > > 2007/11/6, Victor Lazzarini |
Date | 2007-11-06 23:27 |
From | joachim heintz |
Subject | [Csnd] Mac csnd module |
I get the same error when I try to run Csound via Python as Mike showed it in his tutorial. The line: csound.load('myfile.csd') leads to an error: AttributeError: load Can I replace the Mac csnd module with your fixed module containing the CsoundFile class "by hand"? Is it available in CVS or can you send it to the list? Thanks - joachim Am 06.11.2007 um 16:41 schrieb Victor Lazzarini: > It seems to be OK now. So it'll be there in the next release. > > Victor > > At 15:34 06/11/2007, you wrote: >> That's because the Mac csnd module does not have >> the CsoundFile class. There was a time when this was >> causing trouble so I commented it out. Will check if >> it's still the case. >> >> Victor >> >> At 15:13 06/11/2007, you wrote: >>> Thanks, Oeyvind, for your reply. I continued trying to install your >>> Partikkel Cloud Designer. There are some results and new questions: >>> >>> 1. I think I can only use Python 2.3, because I use the PPC version >>> of Csound 5.07 (IntelMac, but I want to use MacCsound). The module >>> csnd is: /System/Library/Frameworks/Python.framework/Versions/2.3/ >>> lib/ python2.3/csnd.py >>> >>> 2. After loading csnd and giving the message "csound loaded" your >>> script "main.py" fails in line 32: >>> csThread = CsoundThread(csound, csoundCommandLine) >>> because it calls csoundModule.py and fails in line 35: >>> self.csound.setOrchestra('''#include 'cloud.orc' >>> ''') >>> saying: >>>>> File "/System/Library/Frameworks/Python.framework/Versions/ >>>>> 2.3/lib/ >>>>> python2.3/csnd.py", line 2878, in |
Date | 2007-11-09 11:41 |
From | joachim heintz |
Subject | [Csnd] Re: Mac csnd module |
Hello Victor - sorry for asking this again: is there a way to use the "new" Mac csnd module now? Thank you - joachim Am 07.11.2007 um 00:27 schrieb joachim heintz: > I get the same error when I try to run Csound via Python as Mike > showed it in his tutorial. The line: > csound.load('myfile.csd') > leads to an error: > AttributeError: load > > Can I replace the Mac csnd module with your fixed module containing > the CsoundFile class "by hand"? Is it available in CVS or can you > send it to the list? Thanks - > > joachim > > > > Am 06.11.2007 um 16:41 schrieb Victor Lazzarini: > >> It seems to be OK now. So it'll be there in the next release. >> >> Victor >> >> At 15:34 06/11/2007, you wrote: >>> That's because the Mac csnd module does not have >>> the CsoundFile class. There was a time when this was >>> causing trouble so I commented it out. Will check if >>> it's still the case. >>> >>> Victor >>> >>> At 15:13 06/11/2007, you wrote: >>>> Thanks, Oeyvind, for your reply. I continued trying to install your >>>> Partikkel Cloud Designer. There are some results and new questions: >>>> >>>> 1. I think I can only use Python 2.3, because I use the PPC version >>>> of Csound 5.07 (IntelMac, but I want to use MacCsound). The module >>>> csnd is: /System/Library/Frameworks/Python.framework/Versions/ >>>> 2.3/lib/ python2.3/csnd.py >>>> >>>> 2. After loading csnd and giving the message "csound loaded" your >>>> script "main.py" fails in line 32: >>>> csThread = CsoundThread(csound, csoundCommandLine) >>>> because it calls csoundModule.py and fails in line 35: >>>> self.csound.setOrchestra('''#include 'cloud.orc' >>>> ''') >>>> saying: >>>>>> File "/System/Library/Frameworks/Python.framework/Versions/ >>>>>> 2.3/lib/ >>>>>> python2.3/csnd.py", line 2878, in |
Date | 2007-11-09 11:58 |
From | Victor Lazzarini |
Subject | [Csnd] Re: Re: Mac csnd module |
I'd have to make a new installer for you. Is that PPC you have? I can see if I can build one now. Victor At 11:41 09/11/2007, you wrote: >Hello Victor - > >sorry for asking this again: is there a way to use the "new" Mac csnd >module now? Thank you - > > joachim > > > >Am 07.11.2007 um 00:27 schrieb joachim heintz: > >>I get the same error when I try to run Csound via Python as Mike >>showed it in his tutorial. The line: >>csound.load('myfile.csd') >>leads to an error: >>AttributeError: load >> >>Can I replace the Mac csnd module with your fixed module containing >>the CsoundFile class "by hand"? Is it available in CVS or can you >>send it to the list? Thanks - >> >> joachim >> >> >> >>Am 06.11.2007 um 16:41 schrieb Victor Lazzarini: >> >>>It seems to be OK now. So it'll be there in the next release. >>> >>>Victor >>> >>>At 15:34 06/11/2007, you wrote: >>>>That's because the Mac csnd module does not have >>>>the CsoundFile class. There was a time when this was >>>>causing trouble so I commented it out. Will check if >>>>it's still the case. >>>> >>>>Victor >>>> >>>>At 15:13 06/11/2007, you wrote: >>>>>Thanks, Oeyvind, for your reply. I continued trying to install your >>>>>Partikkel Cloud Designer. There are some results and new questions: >>>>> >>>>>1. I think I can only use Python 2.3, because I use the PPC version >>>>>of Csound 5.07 (IntelMac, but I want to use MacCsound). The module >>>>>csnd is: /System/Library/Frameworks/Python.framework/Versions/ >>>>>2.3/lib/ python2.3/csnd.py >>>>> >>>>>2. After loading csnd and giving the message "csound loaded" your >>>>>script "main.py" fails in line 32: >>>>>csThread = CsoundThread(csound, csoundCommandLine) >>>>>because it calls csoundModule.py and fails in line 35: >>>>> self.csound.setOrchestra('''#include 'cloud.orc' >>>>> ''') >>>>>saying: >>>>>>> File "/System/Library/Frameworks/Python.framework/Versions/ 2.3/lib/ >>>>>>>python2.3/csnd.py", line 2878, in |
Date | 2007-11-09 12:04 |
From | joachim heintz |
Subject | [Csnd] Re: Re: Re: Mac csnd module |
Thanks a lot. Yes, using the PPC version (MacBook, but using the PPC version under Rosetta because of MacCsound). joachim Am 09.11.2007 um 12:58 schrieb Victor Lazzarini: > I'd have to make a new installer for you. Is that PPC you have? I can > see if I can build one now. > > Victor > > At 11:41 09/11/2007, you wrote: >> Hello Victor - >> >> sorry for asking this again: is there a way to use the "new" Mac csnd >> module now? Thank you - >> >> joachim >> >> >> >> Am 07.11.2007 um 00:27 schrieb joachim heintz: >> >>> I get the same error when I try to run Csound via Python as Mike >>> showed it in his tutorial. The line: >>> csound.load('myfile.csd') >>> leads to an error: >>> AttributeError: load >>> >>> Can I replace the Mac csnd module with your fixed module containing >>> the CsoundFile class "by hand"? Is it available in CVS or can you >>> send it to the list? Thanks - >>> >>> joachim >>> >>> >>> >>> Am 06.11.2007 um 16:41 schrieb Victor Lazzarini: >>> >>>> It seems to be OK now. So it'll be there in the next release. >>>> >>>> Victor >>>> >>>> At 15:34 06/11/2007, you wrote: >>>>> That's because the Mac csnd module does not have >>>>> the CsoundFile class. There was a time when this was >>>>> causing trouble so I commented it out. Will check if >>>>> it's still the case. >>>>> >>>>> Victor >>>>> >>>>> At 15:13 06/11/2007, you wrote: >>>>>> Thanks, Oeyvind, for your reply. I continued trying to install >>>>>> your >>>>>> Partikkel Cloud Designer. There are some results and new >>>>>> questions: >>>>>> >>>>>> 1. I think I can only use Python 2.3, because I use the PPC >>>>>> version >>>>>> of Csound 5.07 (IntelMac, but I want to use MacCsound). The >>>>>> module >>>>>> csnd is: /System/Library/Frameworks/Python.framework/Versions/ >>>>>> 2.3/lib/ python2.3/csnd.py >>>>>> >>>>>> 2. After loading csnd and giving the message "csound loaded" your >>>>>> script "main.py" fails in line 32: >>>>>> csThread = CsoundThread(csound, csoundCommandLine) >>>>>> because it calls csoundModule.py and fails in line 35: >>>>>> self.csound.setOrchestra('''#include 'cloud.orc' >>>>>> ''') >>>>>> saying: >>>>>>>> File "/System/Library/Frameworks/Python.framework/ >>>>>>>> Versions/ 2.3/lib/ >>>>>>>> python2.3/csnd.py", line 2878, in |
Date | 2007-11-09 12:20 |
From | Victor Lazzarini |
Subject | [Csnd] Re: Re: Re: Re: Mac csnd module |
OK, it's causing trouble on PPC (that is why I had taken csoundfile out) but I think it's swig. I am updating it and will try to build. I'll let you if I'm successful. Victor At 12:04 09/11/2007, you wrote: >Thanks a lot. Yes, using the PPC version (MacBook, but using the PPC >version under Rosetta because of MacCsound). > joachim > > > >Am 09.11.2007 um 12:58 schrieb Victor Lazzarini: > >>I'd have to make a new installer for you. Is that PPC you have? I can >>see if I can build one now. >> >>Victor >> >>At 11:41 09/11/2007, you wrote: >>>Hello Victor - >>> >>>sorry for asking this again: is there a way to use the "new" Mac csnd >>>module now? Thank you - >>> >>> joachim >>> >>> >>> >>>Am 07.11.2007 um 00:27 schrieb joachim heintz: >>> >>>>I get the same error when I try to run Csound via Python as Mike >>>>showed it in his tutorial. The line: >>>>csound.load('myfile.csd') >>>>leads to an error: >>>>AttributeError: load >>>> >>>>Can I replace the Mac csnd module with your fixed module containing >>>>the CsoundFile class "by hand"? Is it available in CVS or can you >>>>send it to the list? Thanks - >>>> >>>> joachim >>>> >>>> >>>> >>>>Am 06.11.2007 um 16:41 schrieb Victor Lazzarini: >>>> >>>>>It seems to be OK now. So it'll be there in the next release. >>>>> >>>>>Victor >>>>> >>>>>At 15:34 06/11/2007, you wrote: >>>>>>That's because the Mac csnd module does not have >>>>>>the CsoundFile class. There was a time when this was >>>>>>causing trouble so I commented it out. Will check if >>>>>>it's still the case. >>>>>> >>>>>>Victor >>>>>> >>>>>>At 15:13 06/11/2007, you wrote: >>>>>>>Thanks, Oeyvind, for your reply. I continued trying to install >>>>>>>your >>>>>>>Partikkel Cloud Designer. There are some results and new >>>>>>>questions: >>>>>>> >>>>>>>1. I think I can only use Python 2.3, because I use the PPC >>>>>>>version >>>>>>>of Csound 5.07 (IntelMac, but I want to use MacCsound). The >>>>>>>module >>>>>>>csnd is: /System/Library/Frameworks/Python.framework/Versions/ >>>>>>>2.3/lib/ python2.3/csnd.py >>>>>>> >>>>>>>2. After loading csnd and giving the message "csound loaded" your >>>>>>>script "main.py" fails in line 32: >>>>>>>csThread = CsoundThread(csound, csoundCommandLine) >>>>>>>because it calls csoundModule.py and fails in line 35: >>>>>>> self.csound.setOrchestra('''#include 'cloud.orc' >>>>>>> ''') >>>>>>>saying: >>>>>>>>> File "/System/Library/Frameworks/Python.framework/ Versions/ >>>>>>>>> 2.3/lib/ >>>>>>>>>python2.3/csnd.py", line 2878, in |
Date | 2007-11-09 12:29 |
From | Victor Lazzarini |
Subject | [Csnd] Re: Mac csnd module |
OK, Swig updated, it works. So here is the installer: http://music.nuim.ie/vlazzarini/tmp/main.shtml I am not adding it to sourceforge because I had not checked it is all OK (but it should be). I might do it next week if you tell me it's working fine. Victor At 12:20 09/11/2007, you wrote: >OK, it's causing trouble on PPC (that is why I had taken csoundfile out) but >I think it's swig. I am updating it and will try to build. I'll let you if I'm >successful. > >Victor > >At 12:04 09/11/2007, you wrote: >>Thanks a lot. Yes, using the PPC version (MacBook, but using the PPC >>version under Rosetta because of MacCsound). >> joachim >> >> >> >>Am 09.11.2007 um 12:58 schrieb Victor Lazzarini: >> >>>I'd have to make a new installer for you. Is that PPC you have? I can >>>see if I can build one now. >>> >>>Victor >>> >>>At 11:41 09/11/2007, you wrote: >>>>Hello Victor - >>>> >>>>sorry for asking this again: is there a way to use the "new" Mac csnd >>>>module now? Thank you - >>>> >>>> joachim >>>> >>>> >>>> >>>>Am 07.11.2007 um 00:27 schrieb joachim heintz: >>>> >>>>>I get the same error when I try to run Csound via Python as Mike >>>>>showed it in his tutorial. The line: >>>>>csound.load('myfile.csd') >>>>>leads to an error: >>>>>AttributeError: load >>>>> >>>>>Can I replace the Mac csnd module with your fixed module containing >>>>>the CsoundFile class "by hand"? Is it available in CVS or can you >>>>>send it to the list? Thanks - >>>>> >>>>> joachim >>>>> >>>>> >>>>> >>>>>Am 06.11.2007 um 16:41 schrieb Victor Lazzarini: >>>>> >>>>>>It seems to be OK now. So it'll be there in the next release. >>>>>> >>>>>>Victor >>>>>> >>>>>>At 15:34 06/11/2007, you wrote: >>>>>>>That's because the Mac csnd module does not have >>>>>>>the CsoundFile class. There was a time when this was >>>>>>>causing trouble so I commented it out. Will check if >>>>>>>it's still the case. >>>>>>> >>>>>>>Victor >>>>>>> >>>>>>>At 15:13 06/11/2007, you wrote: >>>>>>>>Thanks, Oeyvind, for your reply. I continued trying to install >>>>>>>>your >>>>>>>>Partikkel Cloud Designer. There are some results and new >>>>>>>>questions: >>>>>>>> >>>>>>>>1. I think I can only use Python 2.3, because I use the PPC >>>>>>>>version >>>>>>>>of Csound 5.07 (IntelMac, but I want to use MacCsound). The >>>>>>>>module >>>>>>>>csnd is: /System/Library/Frameworks/Python.framework/Versions/ >>>>>>>>2.3/lib/ python2.3/csnd.py >>>>>>>> >>>>>>>>2. After loading csnd and giving the message "csound loaded" your >>>>>>>>script "main.py" fails in line 32: >>>>>>>>csThread = CsoundThread(csound, csoundCommandLine) >>>>>>>>because it calls csoundModule.py and fails in line 35: >>>>>>>> self.csound.setOrchestra('''#include 'cloud.orc' >>>>>>>> ''') >>>>>>>>saying: >>>>>>>>>> File "/System/Library/Frameworks/Python.framework/ Versions/ >>>>>>>>>> 2.3/lib/ >>>>>>>>>>python2.3/csnd.py", line 2878, in |
Date | 2007-11-09 14:35 |
From | joachim heintz |
Subject | [Csnd] Re: Re: Mac csnd module |
Victor - that's really great. Thanks a lot for this extra service. I installed it, and everything seems to run fine. No more problems with AttributeErrors. Unfortunately a new problem came up while running main.py from Oeyvinds Partikkel Cloud Designer: Traceback (most recent call last): File "/Users/jh/Desktop/partikkelCloudDesigner/main.py", line 43, in -toplevel- ctrl_app = wx.PySimpleApp() File "//Library/Python/2.3/wx-2.8-mac-unicode/wx/_core.py", line 7923, in __init__ wx.App.__init__(self, redirect, filename, useBestVisual, clearSigInt) File "//Library/Python/2.3/wx-2.8-mac-unicode/wx/_core.py", line 7791, in __init__ raise SystemExit(msg) SystemExit: This program needs access to the screen. Please run with 'pythonw', not 'python', and only when you are logged in on the main display of your Mac. Anything I can do here? Cheers - joachim Am 09.11.2007 um 13:29 schrieb Victor Lazzarini: > OK, Swig updated, it works. So here is the installer: > > http://music.nuim.ie/vlazzarini/tmp/main.shtml > > I am not adding it to sourceforge because I had not checked it > is all OK (but it should be). I might do it next week if you tell > me it's working fine. > > Victor > > At 12:20 09/11/2007, you wrote: >> OK, it's causing trouble on PPC (that is why I had taken >> csoundfile out) but >> I think it's swig. I am updating it and will try to build. I'll >> let you if I'm >> successful. >> >> Victor >> >> At 12:04 09/11/2007, you wrote: >>> Thanks a lot. Yes, using the PPC version (MacBook, but using the PPC >>> version under Rosetta because of MacCsound). >>> joachim >>> >>> >>> >>> Am 09.11.2007 um 12:58 schrieb Victor Lazzarini: >>> >>>> I'd have to make a new installer for you. Is that PPC you have? >>>> I can >>>> see if I can build one now. >>>> >>>> Victor >>>> >>>> At 11:41 09/11/2007, you wrote: >>>>> Hello Victor - >>>>> >>>>> sorry for asking this again: is there a way to use the "new" >>>>> Mac csnd >>>>> module now? Thank you - >>>>> >>>>> joachim >>>>> >>>>> >>>>> >>>>> Am 07.11.2007 um 00:27 schrieb joachim heintz: >>>>> >>>>>> I get the same error when I try to run Csound via Python as Mike >>>>>> showed it in his tutorial. The line: >>>>>> csound.load('myfile.csd') >>>>>> leads to an error: >>>>>> AttributeError: load >>>>>> >>>>>> Can I replace the Mac csnd module with your fixed module >>>>>> containing >>>>>> the CsoundFile class "by hand"? Is it available in CVS or can you >>>>>> send it to the list? Thanks - >>>>>> >>>>>> joachim >>>>>> >>>>>> >>>>>> >>>>>> Am 06.11.2007 um 16:41 schrieb Victor Lazzarini: >>>>>> >>>>>>> It seems to be OK now. So it'll be there in the next release. >>>>>>> >>>>>>> Victor >>>>>>> >>>>>>> At 15:34 06/11/2007, you wrote: >>>>>>>> That's because the Mac csnd module does not have >>>>>>>> the CsoundFile class. There was a time when this was >>>>>>>> causing trouble so I commented it out. Will check if >>>>>>>> it's still the case. >>>>>>>> >>>>>>>> Victor >>>>>>>> >>>>>>>> At 15:13 06/11/2007, you wrote: >>>>>>>>> Thanks, Oeyvind, for your reply. I continued trying to install >>>>>>>>> your >>>>>>>>> Partikkel Cloud Designer. There are some results and new >>>>>>>>> questions: >>>>>>>>> >>>>>>>>> 1. I think I can only use Python 2.3, because I use the PPC >>>>>>>>> version >>>>>>>>> of Csound 5.07 (IntelMac, but I want to use MacCsound). The >>>>>>>>> module >>>>>>>>> csnd is: /System/Library/Frameworks/Python.framework/Versions/ >>>>>>>>> 2.3/lib/ python2.3/csnd.py >>>>>>>>> >>>>>>>>> 2. After loading csnd and giving the message "csound >>>>>>>>> loaded" your >>>>>>>>> script "main.py" fails in line 32: >>>>>>>>> csThread = CsoundThread(csound, csoundCommandLine) >>>>>>>>> because it calls csoundModule.py and fails in line 35: >>>>>>>>> self.csound.setOrchestra('''#include 'cloud.orc' >>>>>>>>> ''') >>>>>>>>> saying: >>>>>>>>>>> File "/System/Library/Frameworks/Python.framework/ >>>>>>>>>>> Versions/ 2.3/lib/ >>>>>>>>>>> python2.3/csnd.py", line 2878, in |
Date | 2007-11-09 14:58 |
From | "Oeyvind Brandtsegg" |
Subject | [Csnd] Re: Re: Re: Mac csnd module |
Attachments | None |