Csound Csound-dev Csound-tekno Search About

[Cs-dev] 5.13 win installer not including csnd?

Date2011-02-25 14:41
FromOeyvind Brandtsegg
Subject[Cs-dev] 5.13 win installer not including csnd?
The latest win installer seems not to set up the csnd module correctly.
I get
import csnd
ImportError: No module named csnd

when running one of my py scripts.

The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
I have Python 2.7 and windows 7 on this computer, installed everything
from scratch now as the machine is new.


best
Oeyvind

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2011-02-25 15:35
FromMichael Gogins
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
I will check this here and let you know what I get.

Regards,
Mike

On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
 wrote:
> The latest win installer seems not to set up the csnd module correctly.
> I get
> import csnd
> ImportError: No module named csnd
>
> when running one of my py scripts.
>
> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
> I have Python 2.7 and windows 7 on this computer, installed everything
> from scratch now as the machine is new.
>
>
> best
> Oeyvind
>
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2011-02-25 16:15
FromMichael Gogins
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
It works for me.

I uninstalled Csound at work, verified the directory was empty,
downloaded the installer, installed Csound, opened a Windows console,
changed to the Csound directory, imported csnd, and ran help(csnd).

Possible problems:

-- Are you using 32 bit Python, which csnd needs?

-- Has your Windows PATH or PYTHONPATH environment variable gotten
messed up somehow?

Hope this helps,
Mike

On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
 wrote:
> I will check this here and let you know what I get.
>
> Regards,
> Mike
>
> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
>  wrote:
>> The latest win installer seems not to set up the csnd module correctly.
>> I get
>> import csnd
>> ImportError: No module named csnd
>>
>> when running one of my py scripts.
>>
>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>> I have Python 2.7 and windows 7 on this computer, installed everything
>> from scratch now as the machine is new.
>>
>>
>> best
>> Oeyvind
>>
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2011-02-25 19:12
FromOlivier Bélanger
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
AttachmentsNone  None  
Hi,

When I build Cecilia with Csound 5.12, I got the same problem. I had to move manually csnd.py to the Python site-packages folder (where the Csound installer should installed it). Most of the time, we don't want to import csnd from the Csound directory but, like any other python module, from where we are running our scripts...

I think I didn't have this problem with Csound 5.11.1-f and python 2.6!

Olivier

2011/2/25 Michael Gogins <michael.gogins@gmail.com>
It works for me.

I uninstalled Csound at work, verified the directory was empty,
downloaded the installer, installed Csound, opened a Windows console,
changed to the Csound directory, imported csnd, and ran help(csnd).

Possible problems:

-- Are you using 32 bit Python, which csnd needs?

-- Has your Windows PATH or PYTHONPATH environment variable gotten
messed up somehow?

Hope this helps,
Mike

On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
<michael.gogins@gmail.com> wrote:
> I will check this here and let you know what I get.
>
> Regards,
> Mike
>
> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
> <oyvind.brandtsegg@ntnu.no> wrote:
>> The latest win installer seems not to set up the csnd module correctly.
>> I get
>> import csnd
>> ImportError: No module named csnd
>>
>> when running one of my py scripts.
>>
>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>> I have Python 2.7 and windows 7 on this computer, installed everything
>> from scratch now as the machine is new.
>>
>>
>> best
>> Oeyvind
>>
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>



--
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


Date2011-02-25 20:15
FromVictor Lazzarini
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
AttachmentsNone  None  
From 5.12, by request, the installed csnd module is the doubles one. Maybe this is the difference?
On 25 Feb 2011, at 19:12, Olivier Bélanger wrote:

Hi,

When I build Cecilia with Csound 5.12, I got the same problem. I had to move manually csnd.py to the Python site-packages folder (where the Csound installer should installed it). Most of the time, we don't want to import csnd from the Csound directory but, like any other python module, from where we are running our scripts...

I think I didn't have this problem with Csound 5.11.1-f and python 2.6!

Olivier

2011/2/25 Michael Gogins <michael.gogins@gmail.com>
It works for me.

I uninstalled Csound at work, verified the directory was empty,
downloaded the installer, installed Csound, opened a Windows console,
changed to the Csound directory, imported csnd, and ran help(csnd).

Possible problems:

-- Are you using 32 bit Python, which csnd needs?

-- Has your Windows PATH or PYTHONPATH environment variable gotten
messed up somehow?

Hope this helps,
Mike

On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
<michael.gogins@gmail.com> wrote:
> I will check this here and let you know what I get.
>
> Regards,
> Mike
>
> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
> <oyvind.brandtsegg@ntnu.no> wrote:
>> The latest win installer seems not to set up the csnd module correctly.
>> I get
>> import csnd
>> ImportError: No module named csnd
>>
>> when running one of my py scripts.
>>
>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>> I have Python 2.7 and windows 7 on this computer, installed everything
>> from scratch now as the machine is new.
>>
>>
>> best
>> Oeyvind
>>
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>



--
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


Date2011-02-25 20:18
FromVictor Lazzarini
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
AttachmentsNone  None  
Sorry, this is OSX!
On 25 Feb 2011, at 20:15, Victor Lazzarini wrote:

From 5.12, by request, the installed csnd module is the doubles one. Maybe this is the difference?
On 25 Feb 2011, at 19:12, Olivier Bélanger wrote:

Hi,

When I build Cecilia with Csound 5.12, I got the same problem. I had to move manually csnd.py to the Python site-packages folder (where the Csound installer should installed it). Most of the time, we don't want to import csnd from the Csound directory but, like any other python module, from where we are running our scripts...

I think I didn't have this problem with Csound 5.11.1-f and python 2.6!

Olivier

2011/2/25 Michael Gogins <michael.gogins@gmail.com>
It works for me.

I uninstalled Csound at work, verified the directory was empty,
downloaded the installer, installed Csound, opened a Windows console,
changed to the Csound directory, imported csnd, and ran help(csnd).

Possible problems:

-- Are you using 32 bit Python, which csnd needs?

-- Has your Windows PATH or PYTHONPATH environment variable gotten
messed up somehow?

Hope this helps,
Mike

On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
<michael.gogins@gmail.com> wrote:
> I will check this here and let you know what I get.
>
> Regards,
> Mike
>
> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
> <oyvind.brandtsegg@ntnu.no> wrote:
>> The latest win installer seems not to set up the csnd module correctly.
>> I get
>> import csnd
>> ImportError: No module named csnd
>>
>> when running one of my py scripts.
>>
>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>> I have Python 2.7 and windows 7 on this computer, installed everything
>> from scratch now as the machine is new.
>>
>>
>> best
>> Oeyvind
>>
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>



--
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in
Real-Time with Splunk. Collect, index and harness all the fast moving IT data
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business
insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel


Date2011-02-27 08:55
FromOeyvind Brandtsegg
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
Hm,
I will check the Pythonpath again when I get back to that machine tomorrow,
but I'm sure I use 32bit Python (on 64bit win7) as one of the other
Python packages (scons IIRC) explicitly did not support 64bit Python.
I quite sure I checked for csnd.dll and friends in Csound/bin.

I also tried to copy in my old version of Csound from another machine,
and got an error of incompatible Python version (2.6 on the old
machine),
which suggests that Pythonpath should be good I think.

best
Oeyvind

2011/2/25 Michael Gogins :
> It works for me.
>
> I uninstalled Csound at work, verified the directory was empty,
> downloaded the installer, installed Csound, opened a Windows console,
> changed to the Csound directory, imported csnd, and ran help(csnd).
>
> Possible problems:
>
> -- Are you using 32 bit Python, which csnd needs?
>
> -- Has your Windows PATH or PYTHONPATH environment variable gotten
> messed up somehow?
>
> Hope this helps,
> Mike
>
> On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
>  wrote:
>> I will check this here and let you know what I get.
>>
>> Regards,
>> Mike
>>
>> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
>>  wrote:
>>> The latest win installer seems not to set up the csnd module correctly.
>>> I get
>>> import csnd
>>> ImportError: No module named csnd
>>>
>>> when running one of my py scripts.
>>>
>>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>>> I have Python 2.7 and windows 7 on this computer, installed everything
>>> from scratch now as the machine is new.
>>>
>>>
>>> best
>>> Oeyvind
>>>
>>> ------------------------------------------------------------------------------
>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>> generated by your applications, servers and devices whether physical, virtual
>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>
>>
>>
>> --
>> Michael Gogins
>> Irreducible Productions
>> http://www.michael-gogins.com
>> Michael dot Gogins at gmail dot com
>>
>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2011-02-28 09:16
FromOeyvind Brandtsegg
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
I did some more checking and found that csnd.py was missing.
I then reinstalled, going through the options of the installer more
carefully, and discovered that Python interfaces was unchecked by
default.
So, my mistake,
but is there as specific reason why most other interfaces are checked
by default and Python is unchecked? I guess more people than me might
be caught by this, expecting the python interfaces to be installed by
default.

Oeyvind


2011/2/27 Oeyvind Brandtsegg :
> Hm,
> I will check the Pythonpath again when I get back to that machine tomorrow,
> but I'm sure I use 32bit Python (on 64bit win7) as one of the other
> Python packages (scons IIRC) explicitly did not support 64bit Python.
> I quite sure I checked for csnd.dll and friends in Csound/bin.
>
> I also tried to copy in my old version of Csound from another machine,
> and got an error of incompatible Python version (2.6 on the old
> machine),
> which suggests that Pythonpath should be good I think.
>
> best
> Oeyvind
>
> 2011/2/25 Michael Gogins :
>> It works for me.
>>
>> I uninstalled Csound at work, verified the directory was empty,
>> downloaded the installer, installed Csound, opened a Windows console,
>> changed to the Csound directory, imported csnd, and ran help(csnd).
>>
>> Possible problems:
>>
>> -- Are you using 32 bit Python, which csnd needs?
>>
>> -- Has your Windows PATH or PYTHONPATH environment variable gotten
>> messed up somehow?
>>
>> Hope this helps,
>> Mike
>>
>> On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
>>  wrote:
>>> I will check this here and let you know what I get.
>>>
>>> Regards,
>>> Mike
>>>
>>> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
>>>  wrote:
>>>> The latest win installer seems not to set up the csnd module correctly.
>>>> I get
>>>> import csnd
>>>> ImportError: No module named csnd
>>>>
>>>> when running one of my py scripts.
>>>>
>>>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>>>> I have Python 2.7 and windows 7 on this computer, installed everything
>>>> from scratch now as the machine is new.
>>>>
>>>>
>>>> best
>>>> Oeyvind
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>> generated by your applications, servers and devices whether physical, virtual
>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>
>>>
>>>
>>> --
>>> Michael Gogins
>>> Irreducible Productions
>>> http://www.michael-gogins.com
>>> Michael dot Gogins at gmail dot com
>>>
>>
>>
>>
>> --
>> Michael Gogins
>> Irreducible Productions
>> http://www.michael-gogins.com
>> Michael dot Gogins at gmail dot com
>>
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2011-02-28 15:13
FromMichael Gogins
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
Richard Boulanger and others complained repeatedly that Python
interfaces were being installed by default (which used to be the
case). Presumably they or their students did not have Python installed
before installing Csound, and did not care to install Python in order
to install Csound.

Regards,
Mike

On Mon, Feb 28, 2011 at 4:16 AM, Oeyvind Brandtsegg
 wrote:
> I did some more checking and found that csnd.py was missing.
> I then reinstalled, going through the options of the installer more
> carefully, and discovered that Python interfaces was unchecked by
> default.
> So, my mistake,
> but is there as specific reason why most other interfaces are checked
> by default and Python is unchecked? I guess more people than me might
> be caught by this, expecting the python interfaces to be installed by
> default.
>
> Oeyvind
>
>
> 2011/2/27 Oeyvind Brandtsegg :
>> Hm,
>> I will check the Pythonpath again when I get back to that machine tomorrow,
>> but I'm sure I use 32bit Python (on 64bit win7) as one of the other
>> Python packages (scons IIRC) explicitly did not support 64bit Python.
>> I quite sure I checked for csnd.dll and friends in Csound/bin.
>>
>> I also tried to copy in my old version of Csound from another machine,
>> and got an error of incompatible Python version (2.6 on the old
>> machine),
>> which suggests that Pythonpath should be good I think.
>>
>> best
>> Oeyvind
>>
>> 2011/2/25 Michael Gogins :
>>> It works for me.
>>>
>>> I uninstalled Csound at work, verified the directory was empty,
>>> downloaded the installer, installed Csound, opened a Windows console,
>>> changed to the Csound directory, imported csnd, and ran help(csnd).
>>>
>>> Possible problems:
>>>
>>> -- Are you using 32 bit Python, which csnd needs?
>>>
>>> -- Has your Windows PATH or PYTHONPATH environment variable gotten
>>> messed up somehow?
>>>
>>> Hope this helps,
>>> Mike
>>>
>>> On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
>>>  wrote:
>>>> I will check this here and let you know what I get.
>>>>
>>>> Regards,
>>>> Mike
>>>>
>>>> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
>>>>  wrote:
>>>>> The latest win installer seems not to set up the csnd module correctly.
>>>>> I get
>>>>> import csnd
>>>>> ImportError: No module named csnd
>>>>>
>>>>> when running one of my py scripts.
>>>>>
>>>>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>>>>> I have Python 2.7 and windows 7 on this computer, installed everything
>>>>> from scratch now as the machine is new.
>>>>>
>>>>>
>>>>> best
>>>>> Oeyvind
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>>> generated by your applications, servers and devices whether physical, virtual
>>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Michael Gogins
>>>> Irreducible Productions
>>>> http://www.michael-gogins.com
>>>> Michael dot Gogins at gmail dot com
>>>>
>>>
>>>
>>>
>>> --
>>> Michael Gogins
>>> Irreducible Productions
>>> http://www.michael-gogins.com
>>> Michael dot Gogins at gmail dot com
>>>
>>> ------------------------------------------------------------------------------
>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>> generated by your applications, servers and devices whether physical, virtual
>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>
>
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2011-02-28 15:18
From"Dr. Richard Boulanger"
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
I am not sure that I was complaining about this?  If so... It might have been indirectly related.

In fact, I am very interested in the Python connection to Csound (via OLPC of course) and am a huge huge fan of Olivier Bélanger's OUNK.

Dr.B.

Sent from my iPad.

On Feb 28, 2011, at 10:13 AM, Michael Gogins  wrote:

> Richard Boulanger and others complained repeatedly that Python
> interfaces were being installed by default (which used to be the
> case). Presumably they or their students did not have Python installed
> before installing Csound, and did not care to install Python in order
> to install Csound.
> 
> Regards,
> Mike
> 
> On Mon, Feb 28, 2011 at 4:16 AM, Oeyvind Brandtsegg
>  wrote:
>> I did some more checking and found that csnd.py was missing.
>> I then reinstalled, going through the options of the installer more
>> carefully, and discovered that Python interfaces was unchecked by
>> default.
>> So, my mistake,
>> but is there as specific reason why most other interfaces are checked
>> by default and Python is unchecked? I guess more people than me might
>> be caught by this, expecting the python interfaces to be installed by
>> default.
>> 
>> Oeyvind
>> 
>> 
>> 2011/2/27 Oeyvind Brandtsegg :
>>> Hm,
>>> I will check the Pythonpath again when I get back to that machine tomorrow,
>>> but I'm sure I use 32bit Python (on 64bit win7) as one of the other
>>> Python packages (scons IIRC) explicitly did not support 64bit Python.
>>> I quite sure I checked for csnd.dll and friends in Csound/bin.
>>> 
>>> I also tried to copy in my old version of Csound from another machine,
>>> and got an error of incompatible Python version (2.6 on the old
>>> machine),
>>> which suggests that Pythonpath should be good I think.
>>> 
>>> best
>>> Oeyvind
>>> 
>>> 2011/2/25 Michael Gogins :
>>>> It works for me.
>>>> 
>>>> I uninstalled Csound at work, verified the directory was empty,
>>>> downloaded the installer, installed Csound, opened a Windows console,
>>>> changed to the Csound directory, imported csnd, and ran help(csnd).
>>>> 
>>>> Possible problems:
>>>> 
>>>> -- Are you using 32 bit Python, which csnd needs?
>>>> 
>>>> -- Has your Windows PATH or PYTHONPATH environment variable gotten
>>>> messed up somehow?
>>>> 
>>>> Hope this helps,
>>>> Mike
>>>> 
>>>> On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
>>>>  wrote:
>>>>> I will check this here and let you know what I get.
>>>>> 
>>>>> Regards,
>>>>> Mike
>>>>> 
>>>>> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
>>>>>  wrote:
>>>>>> The latest win installer seems not to set up the csnd module correctly.
>>>>>> I get
>>>>>> import csnd
>>>>>> ImportError: No module named csnd
>>>>>> 
>>>>>> when running one of my py scripts.
>>>>>> 
>>>>>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>>>>>> I have Python 2.7 and windows 7 on this computer, installed everything
>>>>>> from scratch now as the machine is new.
>>>>>> 
>>>>>> 
>>>>>> best
>>>>>> Oeyvind
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>>>> generated by your applications, servers and devices whether physical, virtual
>>>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> --
>>>>> Michael Gogins
>>>>> Irreducible Productions
>>>>> http://www.michael-gogins.com
>>>>> Michael dot Gogins at gmail dot com
>>>>> 
>>>> 
>>>> 
>>>> 
>>>> --
>>>> Michael Gogins
>>>> Irreducible Productions
>>>> http://www.michael-gogins.com
>>>> Michael dot Gogins at gmail dot com
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>> generated by your applications, servers and devices whether physical, virtual
>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>> 
>> 
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
> 
> 
> 
> -- 
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
> 
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in 
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business 
> insights. http://p.sf.net/sfu/splunk-dev2dev 
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Date2011-02-28 15:20
From"Dr. Richard Boulanger"
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
CsoundAC and you tutorial on it are also fantastic and incredibly important.  Looking forward to the new Python connections promised in the upcoming QuteCsound too.

Sent from my iPad.

On Feb 28, 2011, at 10:13 AM, Michael Gogins  wrote:

> Richard Boulanger and others complained repeatedly that Python
> interfaces were being installed by default (which used to be the
> case). Presumably they or their students did not have Python installed
> before installing Csound, and did not care to install Python in order
> to install Csound.
> 
> Regards,
> Mike
> 
> On Mon, Feb 28, 2011 at 4:16 AM, Oeyvind Brandtsegg
>  wrote:
>> I did some more checking and found that csnd.py was missing.
>> I then reinstalled, going through the options of the installer more
>> carefully, and discovered that Python interfaces was unchecked by
>> default.
>> So, my mistake,
>> but is there as specific reason why most other interfaces are checked
>> by default and Python is unchecked? I guess more people than me might
>> be caught by this, expecting the python interfaces to be installed by
>> default.
>> 
>> Oeyvind
>> 
>> 
>> 2011/2/27 Oeyvind Brandtsegg :
>>> Hm,
>>> I will check the Pythonpath again when I get back to that machine tomorrow,
>>> but I'm sure I use 32bit Python (on 64bit win7) as one of the other
>>> Python packages (scons IIRC) explicitly did not support 64bit Python.
>>> I quite sure I checked for csnd.dll and friends in Csound/bin.
>>> 
>>> I also tried to copy in my old version of Csound from another machine,
>>> and got an error of incompatible Python version (2.6 on the old
>>> machine),
>>> which suggests that Pythonpath should be good I think.
>>> 
>>> best
>>> Oeyvind
>>> 
>>> 2011/2/25 Michael Gogins :
>>>> It works for me.
>>>> 
>>>> I uninstalled Csound at work, verified the directory was empty,
>>>> downloaded the installer, installed Csound, opened a Windows console,
>>>> changed to the Csound directory, imported csnd, and ran help(csnd).
>>>> 
>>>> Possible problems:
>>>> 
>>>> -- Are you using 32 bit Python, which csnd needs?
>>>> 
>>>> -- Has your Windows PATH or PYTHONPATH environment variable gotten
>>>> messed up somehow?
>>>> 
>>>> Hope this helps,
>>>> Mike
>>>> 
>>>> On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
>>>>  wrote:
>>>>> I will check this here and let you know what I get.
>>>>> 
>>>>> Regards,
>>>>> Mike
>>>>> 
>>>>> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
>>>>>  wrote:
>>>>>> The latest win installer seems not to set up the csnd module correctly.
>>>>>> I get
>>>>>> import csnd
>>>>>> ImportError: No module named csnd
>>>>>> 
>>>>>> when running one of my py scripts.
>>>>>> 
>>>>>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>>>>>> I have Python 2.7 and windows 7 on this computer, installed everything
>>>>>> from scratch now as the machine is new.
>>>>>> 
>>>>>> 
>>>>>> best
>>>>>> Oeyvind
>>>>>> 
>>>>>> ------------------------------------------------------------------------------
>>>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>>>> generated by your applications, servers and devices whether physical, virtual
>>>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> --
>>>>> Michael Gogins
>>>>> Irreducible Productions
>>>>> http://www.michael-gogins.com
>>>>> Michael dot Gogins at gmail dot com
>>>>> 
>>>> 
>>>> 
>>>> 
>>>> --
>>>> Michael Gogins
>>>> Irreducible Productions
>>>> http://www.michael-gogins.com
>>>> Michael dot Gogins at gmail dot com
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>> generated by your applications, servers and devices whether physical, virtual
>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>> 
>> 
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
> 
> 
> 
> -- 
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
> 
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in 
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business 
> insights. http://p.sf.net/sfu/splunk-dev2dev 
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2011-02-28 15:27
FromMichael Gogins
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
"Complaint" is not a bad word. You did complain about it, so I fixed
it. My philosophy was, all bells and whistles should be the default.
Now, I realize that this doesn't necessarily suit all beginners and
students.

Regards,
Mike

On Mon, Feb 28, 2011 at 10:20 AM, Dr. Richard Boulanger
 wrote:
> CsoundAC and you tutorial on it are also fantastic and incredibly important.  Looking forward to the new Python connections promised in the upcoming QuteCsound too.
>
> Sent from my iPad.
>
> On Feb 28, 2011, at 10:13 AM, Michael Gogins  wrote:
>
>> Richard Boulanger and others complained repeatedly that Python
>> interfaces were being installed by default (which used to be the
>> case). Presumably they or their students did not have Python installed
>> before installing Csound, and did not care to install Python in order
>> to install Csound.
>>
>> Regards,
>> Mike
>>
>> On Mon, Feb 28, 2011 at 4:16 AM, Oeyvind Brandtsegg
>>  wrote:
>>> I did some more checking and found that csnd.py was missing.
>>> I then reinstalled, going through the options of the installer more
>>> carefully, and discovered that Python interfaces was unchecked by
>>> default.
>>> So, my mistake,
>>> but is there as specific reason why most other interfaces are checked
>>> by default and Python is unchecked? I guess more people than me might
>>> be caught by this, expecting the python interfaces to be installed by
>>> default.
>>>
>>> Oeyvind
>>>
>>>
>>> 2011/2/27 Oeyvind Brandtsegg :
>>>> Hm,
>>>> I will check the Pythonpath again when I get back to that machine tomorrow,
>>>> but I'm sure I use 32bit Python (on 64bit win7) as one of the other
>>>> Python packages (scons IIRC) explicitly did not support 64bit Python.
>>>> I quite sure I checked for csnd.dll and friends in Csound/bin.
>>>>
>>>> I also tried to copy in my old version of Csound from another machine,
>>>> and got an error of incompatible Python version (2.6 on the old
>>>> machine),
>>>> which suggests that Pythonpath should be good I think.
>>>>
>>>> best
>>>> Oeyvind
>>>>
>>>> 2011/2/25 Michael Gogins :
>>>>> It works for me.
>>>>>
>>>>> I uninstalled Csound at work, verified the directory was empty,
>>>>> downloaded the installer, installed Csound, opened a Windows console,
>>>>> changed to the Csound directory, imported csnd, and ran help(csnd).
>>>>>
>>>>> Possible problems:
>>>>>
>>>>> -- Are you using 32 bit Python, which csnd needs?
>>>>>
>>>>> -- Has your Windows PATH or PYTHONPATH environment variable gotten
>>>>> messed up somehow?
>>>>>
>>>>> Hope this helps,
>>>>> Mike
>>>>>
>>>>> On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
>>>>>  wrote:
>>>>>> I will check this here and let you know what I get.
>>>>>>
>>>>>> Regards,
>>>>>> Mike
>>>>>>
>>>>>> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
>>>>>>  wrote:
>>>>>>> The latest win installer seems not to set up the csnd module correctly.
>>>>>>> I get
>>>>>>> import csnd
>>>>>>> ImportError: No module named csnd
>>>>>>>
>>>>>>> when running one of my py scripts.
>>>>>>>
>>>>>>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>>>>>>> I have Python 2.7 and windows 7 on this computer, installed everything
>>>>>>> from scratch now as the machine is new.
>>>>>>>
>>>>>>>
>>>>>>> best
>>>>>>> Oeyvind
>>>>>>>
>>>>>>> ------------------------------------------------------------------------------
>>>>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>>>>> generated by your applications, servers and devices whether physical, virtual
>>>>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>>>>> _______________________________________________
>>>>>>> Csound-devel mailing list
>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Michael Gogins
>>>>>> Irreducible Productions
>>>>>> http://www.michael-gogins.com
>>>>>> Michael dot Gogins at gmail dot com
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Michael Gogins
>>>>> Irreducible Productions
>>>>> http://www.michael-gogins.com
>>>>> Michael dot Gogins at gmail dot com
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>>> generated by your applications, servers and devices whether physical, virtual
>>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>
>>>>
>>>
>>> ------------------------------------------------------------------------------
>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>> generated by your applications, servers and devices whether physical, virtual
>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>
>>
>>
>> --
>> Michael Gogins
>> Irreducible Productions
>> http://www.michael-gogins.com
>> Michael dot Gogins at gmail dot com
>>
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2011-02-28 15:38
FromAndres Cabrera
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
Hi,

This makes me realize it might be good to install the python interface
by default, but not the python opcodes, as those can be a nuisance and
a source of questions and frustration for users.

I hope to have a preview of the python interface to QuteCsound
sometime soon as an alpha release, but things have kept me too busy...

Cheers,
Andres

On Mon, Feb 28, 2011 at 3:27 PM, Michael Gogins
 wrote:
> "Complaint" is not a bad word. You did complain about it, so I fixed
> it. My philosophy was, all bells and whistles should be the default.
> Now, I realize that this doesn't necessarily suit all beginners and
> students.
>
> Regards,
> Mike
>
> On Mon, Feb 28, 2011 at 10:20 AM, Dr. Richard Boulanger
>  wrote:
>> CsoundAC and you tutorial on it are also fantastic and incredibly important.  Looking forward to the new Python connections promised in the upcoming QuteCsound too.
>>
>> Sent from my iPad.
>>
>> On Feb 28, 2011, at 10:13 AM, Michael Gogins  wrote:
>>
>>> Richard Boulanger and others complained repeatedly that Python
>>> interfaces were being installed by default (which used to be the
>>> case). Presumably they or their students did not have Python installed
>>> before installing Csound, and did not care to install Python in order
>>> to install Csound.
>>>
>>> Regards,
>>> Mike
>>>
>>> On Mon, Feb 28, 2011 at 4:16 AM, Oeyvind Brandtsegg
>>>  wrote:
>>>> I did some more checking and found that csnd.py was missing.
>>>> I then reinstalled, going through the options of the installer more
>>>> carefully, and discovered that Python interfaces was unchecked by
>>>> default.
>>>> So, my mistake,
>>>> but is there as specific reason why most other interfaces are checked
>>>> by default and Python is unchecked? I guess more people than me might
>>>> be caught by this, expecting the python interfaces to be installed by
>>>> default.
>>>>
>>>> Oeyvind
>>>>
>>>>
>>>> 2011/2/27 Oeyvind Brandtsegg :
>>>>> Hm,
>>>>> I will check the Pythonpath again when I get back to that machine tomorrow,
>>>>> but I'm sure I use 32bit Python (on 64bit win7) as one of the other
>>>>> Python packages (scons IIRC) explicitly did not support 64bit Python.
>>>>> I quite sure I checked for csnd.dll and friends in Csound/bin.
>>>>>
>>>>> I also tried to copy in my old version of Csound from another machine,
>>>>> and got an error of incompatible Python version (2.6 on the old
>>>>> machine),
>>>>> which suggests that Pythonpath should be good I think.
>>>>>
>>>>> best
>>>>> Oeyvind
>>>>>
>>>>> 2011/2/25 Michael Gogins :
>>>>>> It works for me.
>>>>>>
>>>>>> I uninstalled Csound at work, verified the directory was empty,
>>>>>> downloaded the installer, installed Csound, opened a Windows console,
>>>>>> changed to the Csound directory, imported csnd, and ran help(csnd).
>>>>>>
>>>>>> Possible problems:
>>>>>>
>>>>>> -- Are you using 32 bit Python, which csnd needs?
>>>>>>
>>>>>> -- Has your Windows PATH or PYTHONPATH environment variable gotten
>>>>>> messed up somehow?
>>>>>>
>>>>>> Hope this helps,
>>>>>> Mike
>>>>>>
>>>>>> On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
>>>>>>  wrote:
>>>>>>> I will check this here and let you know what I get.
>>>>>>>
>>>>>>> Regards,
>>>>>>> Mike
>>>>>>>
>>>>>>> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
>>>>>>>  wrote:
>>>>>>>> The latest win installer seems not to set up the csnd module correctly.
>>>>>>>> I get
>>>>>>>> import csnd
>>>>>>>> ImportError: No module named csnd
>>>>>>>>
>>>>>>>> when running one of my py scripts.
>>>>>>>>
>>>>>>>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>>>>>>>> I have Python 2.7 and windows 7 on this computer, installed everything
>>>>>>>> from scratch now as the machine is new.
>>>>>>>>
>>>>>>>>
>>>>>>>> best
>>>>>>>> Oeyvind
>>>>>>>>
>>>>>>>> ------------------------------------------------------------------------------
>>>>>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>>>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>>>>>> generated by your applications, servers and devices whether physical, virtual
>>>>>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>>>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>>>>>> _______________________________________________
>>>>>>>> Csound-devel mailing list
>>>>>>>> Csound-devel@lists.sourceforge.net
>>>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> Michael Gogins
>>>>>>> Irreducible Productions
>>>>>>> http://www.michael-gogins.com
>>>>>>> Michael dot Gogins at gmail dot com
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Michael Gogins
>>>>>> Irreducible Productions
>>>>>> http://www.michael-gogins.com
>>>>>> Michael dot Gogins at gmail dot com
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>>>> generated by your applications, servers and devices whether physical, virtual
>>>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>> generated by your applications, servers and devices whether physical, virtual
>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>
>>>
>>>
>>> --
>>> Michael Gogins
>>> Irreducible Productions
>>> http://www.michael-gogins.com
>>> Michael dot Gogins at gmail dot com
>>>
>>> ------------------------------------------------------------------------------
>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>> generated by your applications, servers and devices whether physical, virtual
>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
h

Date2011-02-28 19:38
FromOeyvind Brandtsegg
SubjectRe: [Cs-dev] 5.13 win installer not including csnd?
Please do not take offense,
and it's clear that we might all have different expectations of whats
the most useful setup.
My concern is mainly that I expected a component to be installed and
the installer gave me no indication that it was not installed.
The checkbox was hidden in a collabsible menu, so I did not see it.
Maybe the toplevel branch should be "grayed out" (or otherwise marked)
to indicate that not all components in the tree is selected for
installation.
Also the file csnd.dll was in place, so I thought the python interface
was all there, until I looked for the other csnd files.

The good thing about airing these concerns on the list is to find a
solution that will appear as "natural" to as many as possible.

all best
Oeyvind

2011/2/28 Michael Gogins :
> Richard Boulanger and others complained repeatedly that Python
> interfaces were being installed by default (which used to be the
> case). Presumably they or their students did not have Python installed
> before installing Csound, and did not care to install Python in order
> to install Csound.
>
> Regards,
> Mike
>
> On Mon, Feb 28, 2011 at 4:16 AM, Oeyvind Brandtsegg
>  wrote:
>> I did some more checking and found that csnd.py was missing.
>> I then reinstalled, going through the options of the installer more
>> carefully, and discovered that Python interfaces was unchecked by
>> default.
>> So, my mistake,
>> but is there as specific reason why most other interfaces are checked
>> by default and Python is unchecked? I guess more people than me might
>> be caught by this, expecting the python interfaces to be installed by
>> default.
>>
>> Oeyvind
>>
>>
>> 2011/2/27 Oeyvind Brandtsegg :
>>> Hm,
>>> I will check the Pythonpath again when I get back to that machine tomorrow,
>>> but I'm sure I use 32bit Python (on 64bit win7) as one of the other
>>> Python packages (scons IIRC) explicitly did not support 64bit Python.
>>> I quite sure I checked for csnd.dll and friends in Csound/bin.
>>>
>>> I also tried to copy in my old version of Csound from another machine,
>>> and got an error of incompatible Python version (2.6 on the old
>>> machine),
>>> which suggests that Pythonpath should be good I think.
>>>
>>> best
>>> Oeyvind
>>>
>>> 2011/2/25 Michael Gogins :
>>>> It works for me.
>>>>
>>>> I uninstalled Csound at work, verified the directory was empty,
>>>> downloaded the installer, installed Csound, opened a Windows console,
>>>> changed to the Csound directory, imported csnd, and ran help(csnd).
>>>>
>>>> Possible problems:
>>>>
>>>> -- Are you using 32 bit Python, which csnd needs?
>>>>
>>>> -- Has your Windows PATH or PYTHONPATH environment variable gotten
>>>> messed up somehow?
>>>>
>>>> Hope this helps,
>>>> Mike
>>>>
>>>> On Fri, Feb 25, 2011 at 10:35 AM, Michael Gogins
>>>>  wrote:
>>>>> I will check this here and let you know what I get.
>>>>>
>>>>> Regards,
>>>>> Mike
>>>>>
>>>>> On Fri, Feb 25, 2011 at 9:41 AM, Oeyvind Brandtsegg
>>>>>  wrote:
>>>>>> The latest win installer seems not to set up the csnd module correctly.
>>>>>> I get
>>>>>> import csnd
>>>>>> ImportError: No module named csnd
>>>>>>
>>>>>> when running one of my py scripts.
>>>>>>
>>>>>> The installer is Csound5.13.1-gnu-win32-d recently fetched from sourceforge
>>>>>> I have Python 2.7 and windows 7 on this computer, installed everything
>>>>>> from scratch now as the machine is new.
>>>>>>
>>>>>>
>>>>>> best
>>>>>> Oeyvind
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>>>> generated by your applications, servers and devices whether physical, virtual
>>>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Michael Gogins
>>>>> Irreducible Productions
>>>>> http://www.michael-gogins.com
>>>>> Michael dot Gogins at gmail dot com
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Michael Gogins
>>>> Irreducible Productions
>>>> http://www.michael-gogins.com
>>>> Michael dot Gogins at gmail dot com
>>>>
>>>> ------------------------------------------------------------------------------
>>>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>>>> generated by your applications, servers and devices whether physical, virtual
>>>> or in the cloud. Deliver compliance at lower cost and gain new business
>>>> insights. http://p.sf.net/sfu/splunk-dev2dev
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>
>>
>> ------------------------------------------------------------------------------
>> Free Software Download: Index, Search & Analyze Logs and other IT data in
>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
>> generated by your applications, servers and devices whether physical, virtual
>> or in the cloud. Deliver compliance at lower cost and gain new business
>> insights. http://p.sf.net/sfu/splunk-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net