[Csound] Csound and ipython
Date | 2015-10-16 04:06 |
From | Anthony Palomba |
Subject | [Csound] Csound and ipython |
Hey folks, I am working on developing a python composition environment. My intention is to use csound be the sound engine and leverage some of the latest cutting edge python tools (ipython, numpy, pandas, music21), to develop musical compositions.https://github.com/csound/csound/wiki/icsound Unreadable Notebook: /Users/audiodev/python/ipynb/Statistical Sonification II.ipynb NotJSONError("Notebook does not appear to be JSON: u'\\n\\n\\n\\n\\n\\n\\n\\n\\n<!DOCTYPE html>\\n<ht...",) Any idea what the problem might be? Thanks, |
Date | 2015-10-16 05:23 |
From | Andres Cabrera |
Subject | Re: [Csound] Csound and ipython |
It seems you saved the html page. Click on the download icon at the top of the page to get the notebook. Also, this page might be useful: https://github.com/csound/csound/blob/develop/frontends/icsound/icsound%20test%20notebook.ipynb It's the demo notebook in the Csound sources which now includes the material I presented at ICSC. On Thu, Oct 15, 2015 at 8:06 PM, Anthony Palomba <apalomba@austin.rr.com> wrote:
|
Date | 2015-10-16 21:37 |
From | Anthony Palomba |
Subject | Re: [Csound] Csound and ipython |
Hey Andres, Ahhh I see, loading now.--------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-1-22ae1a8bfc39> in <module>() ----> 1 import icsound 2 cs = icsound.icsound() ImportError: No module named icsound Does the csound installer not install the icsound package? Anthony On Thu, Oct 15, 2015 at 11:23 PM, Andres Cabrera <mantaraya36@gmail.com> wrote:
|
Date | 2015-10-16 21:59 |
From | Anthony Palomba |
Subject | Re: [Csound] Csound and ipython |
Also, I forgot to mention that I am on a mac. AnthonyOn Fri, Oct 16, 2015 at 3:37 PM, Anthony Palomba <apalomba@austin.rr.com> wrote:
|
Date | 2015-10-18 20:04 |
From | Anthony Palomba |
Subject | Re: [Csound] Csound and ipython |
Hey Andres, It looks like the csound installer is not installing the icsound package.On Fri, Oct 16, 2015 at 3:37 PM, Anthony Palomba <apalomba@austin.rr.com> wrote:
|
Date | 2015-10-18 23:04 |
From | Andres Cabrera |
Subject | Re: [Csound] Csound and ipython |
Hi, Installing icsound is simple. You can just copy the icsound.py file to your python modules directory.Cheers, Andrés On Sun, Oct 18, 2015 at 12:04 PM, Anthony Palomba <apalomba@austin.rr.com> wrote:
|
Date | 2015-10-19 00:44 |
From | Anthony Palomba |
Subject | Re: [Csound] Csound and ipython |
Hey Andres, Where is icsound.py located?On Sun, Oct 18, 2015 at 5:04 PM, Andres Cabrera <mantaraya36@gmail.com> wrote:
|
Date | 2015-10-19 01:21 |
From | Andres Cabrera |
Subject | Re: [Csound] Csound and ipython |
In frontends/icsound. A On 4:44PM, Sun, Oct 18, 2015 Anthony Palomba <apalomba@austin.rr.com> wrote:
|
Date | 2015-10-19 02:16 |
From | Anthony Palomba |
Subject | Re: [Csound] Csound and ipython |
Andres, I have csound 6.05 installed on OSX, I can not find this file on the On Sun, Oct 18, 2015 at 7:21 PM, Andres Cabrera <mantaraya36@gmail.com> wrote:
|
Date | 2015-10-19 09:09 |
From | Victor Lazzarini |
Subject | Re: [Csound] Csound and ipython |
As I said before, the installer is not currently carrying this file. It will be there in later releases now that I have been given the heads up. ======================== Dr Victor Lazzarini Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland Tel: 00 353 7086936 Fax: 00 353 1 7086952 > On 19 Oct 2015, at 02:16, Anthony Palomba |
Date | 2015-10-19 14:27 |
From | Anthony Palomba |
Subject | Re: [Csound] Csound and ipython |
Ahhh okay I see. Is this file in Github? I could down loaded it and manually install it. Thanks,On Mon, Oct 19, 2015 at 3:09 AM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote: As I said before, the installer is not currently carrying this file. It will be there in later releases now that I have been given the heads up. |
Date | 2015-10-19 15:41 |
From | Andres Cabrera |
Subject | Re: [Csound] Csound and ipython |
Hi, The file is here:https://raw.githubusercontent.com/csound/csound/develop/frontends/icsound/icsound.py On Mon, Oct 19, 2015 at 6:27 AM, Anthony Palomba <apalomba@austin.rr.com> wrote:
|
Date | 2015-10-19 19:14 |
From | Anthony Palomba |
Subject | Re: [Csound] Csound and ipython |
Hey Andres, There is no "modules" directory. I have python 2.7.10 running in OSX 10.10, looking under.../Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7 I tried putting it in here... /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/icsound It did not work. Anthony On Sun, Oct 18, 2015 at 5:04 PM, Andres Cabrera <mantaraya36@gmail.com> wrote:
|
Date | 2015-10-22 05:45 |
From | Andres Cabrera |
Subject | Re: [Csound] Csound and ipython |
Hi, DId you try putting the icsound.py file in:/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/ On Mon, Oct 19, 2015 at 11:14 AM, Anthony Palomba <apalomba@austin.rr.com> wrote:
|
Date | 2015-10-22 21:21 |
From | Anthony Palomba |
Subject | Re: [Csound] Csound and ipython |
Hey Andres, 1. When I put icsound.py in /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/But I get the following error... --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-3-22ae1a8bfc39> in <module>() ----> 1 import icsound 2 cs = icsound.icsound() /Users/anthonypalomba/audiodev/python/ipynb/icsound.py in <module>() 30 from __future__ import division 31 ---> 32 import csnd6 33 from pylab import * 34 import socket ImportError: No module named csnd6 -ap On Wed, Oct 21, 2015 at 11:45 PM, Andres Cabrera <mantaraya36@gmail.com> wrote:
|