So I installed csound 6.16.2
This time python3.9 complained that ctcsound was missing.
I installed python3-csound and get the same error.
(?)
Okay, installed sphinx, which seems to have been the obstacle…
Eep:
engine = Engine()
Traceback (most recent call last):
File “”, line 1, in
File “/home/forrest/.local/lib/python3.9/site-packages/csoundengine/engine.py”, line 586, in init
self.start()
File “/home/forrest/.local/lib/python3.9/site-packages/csoundengine/engine.py”, line 847, in start
self._startCsound()
File “/home/forrest/.local/lib/python3.9/site-packages/csoundengine/engine.py”, line 731, in _startCsound
if cs.version() < 6160:
TypeError: ‘<’ not supported between instances of ‘version’ and ‘int’
To clarify some things:
- Csound 7 is not released and not supported. Use csound 6.17, which is the last release. Use the csound6 branch if building from source.
- I don’t know what “python3-csound” is. csoundengine should install all its dependencies, even the external plugins needed.
If you need to install the dependencies yourself, you can do (from python 3.8, 3.9 or 3.10):
pip install risset
risset install “*”
pip install csoundengine
forrest@beefurr:~/csound$ git clone https://github.com/csound/csound.git
…
forrest@beefurr:~/csound/cs6make$ sudo ldconfig
forrest@beefurr:~/csound/cs6make$ csound --version
–Csound version 7.0 (double samples) Feb 28 2022
[commit: 6353330bb7545afb3058b3bb24d4ac458e48893f]
end of score. overall amps: 0.0
overall samples out of range: 0
0 errors in performance
Elapsed time at end of performance: real: 0.001s, CPU: 0.001s
Trying to git clone to any other csound branch gets me this sort of error:
forrest@beefurr:~/csound$ git clone https://github.com/csound/csound/tree/master.git
Cloning into ‘master’…
remote: Please upgrade your git client.
remote: GitHub.com no longer supports git over dumb-http: https://github.com/blog/809-git-dumb-http-transport-to-be-turned-off-in-90-days
fatal: unable to access ‘https://github.com/csound/csound/tree/master.git/’: The requested URL returned error: 403
forrest@beefurr:~/csound$ git --version
git version 2.25.1
?
Successfully installed csoundengine-1.8.1
WARNING: You are using pip version 21.0.1; however, version 22.0.3 is available.
You should consider upgrading via the ‘/usr/bin/python3.9 -m pip install --upgrade pip’ command.
forrest@beefurr:~$ csound --version
0dBFS level = 32768.0
–Csound version 6.16 (double samples) Feb 28 2022
[commit: none]
libsndfile-1.0.28
end of score. overall amps: 0.0
overall samples out of range: 0
0 errors in performance
Elapsed time at end of performance: real: 0.001s, CPU: 0.001s
forrest@beefurr:~$ python3.9
Python 3.9.10 (main, Jan 15 2022, 18:17:56)
[GCC 9.3.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.
from csoundengine import *
Traceback (most recent call last):
File “”, line 1, in
File “/usr/local/lib/python3.9/dist-packages/csoundengine/init.py”, line 103, in
from .engine import *
File “/usr/local/lib/python3.9/dist-packages/csoundengine/engine.py”, line 124, in
import ctcsound
File “/usr/local/lib/python3.9/dist-packages/ctcsound.py”, line 423, in
libcsound.csoundCreateThread2.restype = ct.c_void_p
File “/usr/lib/python3.9/ctypes/init.py”, line 387, in getattr
func = self.getitem(name)
File “/usr/lib/python3.9/ctypes/init.py”, line 392, in getitem
func = self._FuncPtr((name_or_ordinal, self))
AttributeError: /usr/local/lib/libcsound64.so: undefined symbol: csoundCreateThread2
Trying to git clone to any other csound branch gets me this sort of error:
forrest@beefurr:~/csound$ git clone https://github.com/csound/csound/tree/master.git
Cloning into ‘master’…
remote: Please upgrade your git client.
remote: GitHub.com no longer supports git over dumb-http: https://github.com/blog/809-git-dumb-http-transport-to-be-turned-off-in-90-days
fatal: unable to access ‘https://github.com/csound/csound/tree/master.git/’: The requested URL returned error: 403
forrest@beefurr:~/csound$ git --version
git version 2.25.1?
forrest@beefurr:~/csound$ git clone https://github.com/csound/csound.git
…
forrest@beefurr:~/csound/cs6make$ sudo ldconfig
forrest@beefurr:~/csound/cs6make$ csound --version
–Csound version 7.0 (double samples) Feb 28 2022
[commit: 6353330bb7545afb3058b3bb24d4ac458e48893f]
end of score. overall amps: 0.0
overall samples out of range: 0
0 errors in performance
Elapsed time at end of performance: real: 0.001s, CPU: 0.001sTo clarify some things:
- Csound 7 is not released and not supported. Use csound 6.17, which is the last release. Use the csound6 branch if building from source.
- I don’t know what “python3-csound” is. csoundengine should install all its dependencies, even the external plugins needed.
If you need to install the dependencies yourself, you can do (from python 3.8, 3.9 or 3.10):
pip install risset
risset install “*”
pip install csoundengineSo I installed csound 6.16.2
This time python3.9 complained that ctcsound was missing.
I installed python3-csound and get the same error.
(?)Since my csound was out of date, I tried installing the latest version, got csound 7.0 running on ubuntu 20.04.
But that evidently doesn’t work for this. Suggestions?
On python 3.9, I do:
from csoundengine import Engine
and then
engine = Engine()
gets me:error: syntax error, unexpected STRING_TOKEN, expecting T_IDENT or T_TYPED_IDENT (token “”") line 68:
<<<
Parsing failed due to invalid input!
Stopping on parser failure
Error compiling base orchestra. A copy of the orchestra has been saved to /tmp/csoundengine-jwvuyq7q.orc
001
002 sr = 48000
003 ksmps = 64
004 nchnls = 2
……
645 schedule “__businit”, 0, ksmps/sr
end of score. overall amps: 0.0
overall samples out of range: 0
0 errors in performance
Traceback (most recent call last):
File “”, line 1, in
File “/home/forrest/.local/lib/python3.9/site-packages/csoundengine/engine.py”, line 586, in init
self.start()
File “/home/forrest/.local/lib/python3.9/site-packages/csoundengine/engine.py”, line 847, in start
self._startCsound()
File “/home/forrest/.local/lib/python3.9/site-packages/csoundengine/engine.py”, line 766, in _startCsound
raise CsoundError(f"Error compiling base ochestra, error: {err}")
csoundengine.errors.CsoundError: Error compiling base ochestra, error: -1Regarding midi, you can have csound handle midi directly, or you can handle midi on the python side and use it to schedule/control instruments.
Regarding the first option, you can pass any options when creating an engine to configure midi as you would in csound. For example
>>> e = csoundengine.Engine(commandlineOptions=['-+rtmidi=portmidi', '-Ma']) >>> e.compile(r''' instr 1 ... endin ''') >>> e.compile("massign 1, 1")For the second option, you can use any python library to interface with live midi. I would recommend rtmidi2: https://pypi.org/project/rtmidi2 (https://github.com/gesellkammer/rtmidi2)
I don’t find any built-in midi interface… So I just import mido or something of the sort?
Mac has no apt-get, so I tried installing with brew, but I got:
Error: No formulae found in taps.
apt-get install python3.9-dev
I went back to Python 3.9.9, but I got this error:
SystemError: Cannot compile ‘Python.h’. Perhaps you need to install python-dev|python-devel.ERROR: Failed building wheel for numpy
Failed to build numpyI could not pip install python-dev
Thanks for the catch. Fixed both in git and pypi. Python 3.10 is not supported yet since some dependencies have a broken ci build for 3.10.
Hello Eduardo,
I’m using Python 3.8.10 on Ubuntu 20.04. I get this error when importing csoundengine:
cannot import name ‘cache’ from ‘functools’
It seems that cache is a new feature of functools as of Python 3.9 only…
Regards
François
Hi,
As a part of an effort to make working with csound in python less painful I created csoundengine (https://github.com/gesellkammer/csoundengine), a python library built on top of ctcsound and offering many simplifications and less bureaucracy. Particularly if you are using python from within a jupyter notebook, csoundengine will use many of the display and interaction possibilities provided there to offer a more ergonomic experience.
An introduction and documentation can be found here:
https://csoundengine.readthedocs.io/en/latest/index.html
Eduardo
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Probably the version of ctcsound does not match the installed version of csound.
Csound mailing list Send bugs reports to Discussions of bugs and features can be posted here
/usr/local/lib/python3.9/dist-packages/ctcsound-6.17.1.dist-info
Yes.
So I went searching for csound 6.17, downloaded ‘csound-csound6.zip’ ended up with version 6.18
which worked all the way to:
engine = Engine()
error: syntax error, unexpected T_IDENT (token “inumouts”)
line 256:
poly0 inumouts <<<
Unexpected untyped word poly0 when expecting a variable
Parsing failed due to invalid input!
Stopping on parser failure…
(Will see whether I can force #$@! github to git me 6.17)
Downloaded the zip for csound-master, but I’m still getting the error at engine = Engine():
forrest@beefurr:~$ csound --version
–Csound version 6.17 (double samples) Feb 28 2022
[commit: none]
end of score. overall amps: 0.0
overall samples out of range: 0
0 errors in performance
Elapsed time at end of performance: real: 0.001s, CPU: 0.001s
forrest@beefurr:~$ python3.9
Python 3.9.10 (main, Jan 15 2022, 18:17:56)
[GCC 9.3.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.
from csoundengine import *
engine = Engine()
error: syntax error, unexpected T_IDENT (token “inumouts”)
line 256:
poly0 inumouts <<<
Unexpected untyped word poly0 when expecting a variable
Parsing failed due to invalid input!
Stopping on parser failure
So I find:
255 poly0 inumouts, “outch”, ichans, aunts
which is presumably
poly0 inum outs, “outch”, ichans, aunts
but I don’t recognize the syntax, or know where to find it in what file(?)
You seem to be missing the external plugins. This should have happened at installation. You can manually install the external plugins via:
risset install else klib poly
Csound mailing list Send bugs reports to Discussions of bugs and features can be posted here
Just ‘poly’; and now it works, yay!
However, the first example under Introduction did not compile until I changed:
asig += vco2.a(kamp0.7, kfreq + kdetune)
to asig += vco2:a(kamp0.7, kfreq + kdetune)
There was then a long delay after >>> event = engine.sched(“synth”, args=[48, 0.2, 3000, 4])
before I got any sound from it. A problem with my system’s audio?
Or some initialization time needed?
There was a mistake from last update, where an event would be scheduled in relative mode instead of absolute, resulting in long latencies. Can you update csoundengine (pip install -U csoundengine) and try again?
Csound mailing list Send bugs reports to Discussions of bugs and features can be posted here
Much better!
Is this helpful?:
event = engine.sched(“synth”, args=[48, 0.2, 3000, 4])
sched delay: 51.73466666666667
engine.setp(event, 4, 50)
sched delay: 78.892
engine.setp(event, 6, 1000, delay=4)
sched delay: 101.36666666666666
engine.unsched(event)
event = engine.sched(“synth”, args=[48, 0.2, 3000, 4])
sched delay: 172.03333333333333
engine.unsched(event)
There was a mistake from last update, where an event would be scheduled in relative mode instead of absolute, resulting in long latencies. Can you update csoundengine (pip install -U csoundengine) and try again?
Just ‘poly’; and now it works, yay!
However, the first example under Introduction did not compile until I changed:
asig += vco2.a(kamp0.7, kfreq + kdetune)
to asig += vco2:a(kamp0.7, kfreq + kdetune)There was then a long delay after >>> event = engine.sched(“synth”, args=[48, 0.2, 3000, 4])
before I got any sound from it. A problem with my system’s audio?Or some initialization time needed?
You seem to be missing the external plugins. This should have happened at installation. You can manually install the external plugins via:
risset install else klib poly
Downloaded the zip for csound-master, but I’m still getting the error at engine = Engine():
forrest@beefurr:~$ csound --version
–Csound version 6.17 (double samples) Feb 28 2022
[commit: none]
end of score. overall amps: 0.0
overall samples out of range: 0
0 errors in performance
Elapsed time at end of performance: real: 0.001s, CPU: 0.001s
forrest@beefurr:~$ python3.9
Python 3.9.10 (main, Jan 15 2022, 18:17:56)
[GCC 9.3.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.from csoundengine import *
engine = Engine()error: syntax error, unexpected T_IDENT (token “inumouts”)
line 256:poly0 inumouts <<<
Unexpected untyped word poly0 when expecting a variable
Parsing failed due to invalid input!
Stopping on parser failure/usr/local/lib/python3.9/dist-packages/ctcsound-6.17.1.dist-info
Yes.
So I went searching for csound 6.17, downloaded ‘csound-csound6.zip’ ended up with version 6.18
which worked all the way to:engine = Engine()
error: syntax error, unexpected T_IDENT (token “inumouts”)
line 256:poly0 inumouts <<<
Unexpected untyped word poly0 when expecting a variable
Parsing failed due to invalid input!Stopping on parser failure…
(Will see whether I can force #$@! github to git me 6.17)
Probably the version of ctcsound does not match the installed version of csound.
Successfully installed csoundengine-1.8.1
WARNING: You are using pip version 21.0.1; however, version 22.0.3 is available.
You should consider upgrading via the ‘/usr/bin/python3.9 -m pip install --upgrade pip’ command.
forrest@beefurr:~$ csound --version
0dBFS level = 32768.0
–Csound version 6.16 (double samples) Feb 28 2022
[commit: none]
libsndfile-1.0.28
end of score. overall amps: 0.0
overall samples out of range: 0
0 errors in performance
Elapsed time at end of performance: real: 0.001s, CPU: 0.001s
forrest@beefurr:~$ python3.9
Python 3.9.10 (main, Jan 15 2022, 18:17:56)
[GCC 9.3.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.from csoundengine import *
Traceback (most recent call last):
File “”, line 1, in
File “/usr/local/lib/python3.9/dist-packages/csoundengine/init.py”, line 103, in
from .engine import *
File “/usr/local/lib/python3.9/dist-packages/csoundengine/engine.py”, line 124, in
import ctcsound
File “/usr/local/lib/python3.9/dist-packages/ctcsound.py”, line 423, in
libcsound.csoundCreateThread2.restype = ct.c_void_p
File “/usr/lib/python3.9/ctypes/init.py”, line 387, in getattr
func = self.getitem(name)
File “/usr/lib/python3.9/ctypes/init.py”, line 392, in getitem
func = self._FuncPtr((name_or_ordinal, self))
AttributeError: /usr/local/lib/libcsound64.so: undefined symbol: csoundCreateThread2Trying to git clone to any other csound branch gets me this sort of error:
forrest@beefurr:~/csound$ git clone https://github.com/csound/csound/tree/master.git
Cloning into ‘master’…
remote: Please upgrade your git client.
remote: GitHub.com no longer supports git over dumb-http: https://github.com/blog/809-git-dumb-http-transport-to-be-turned-off-in-90-days
fatal: unable to access ‘https://github.com/csound/csound/tree/master.git/’: The requested URL returned error: 403
forrest@beefurr:~/csound$ git --version
git version 2.25.1?
forrest@beefurr:~/csound$ git clone https://github.com/csound/csound.git
…
forrest@beefurr:~/csound/cs6make$ sudo ldconfig
forrest@beefurr:~/csound/cs6make$ csound --version
–Csound version 7.0 (double samples) Feb 28 2022
[commit: 6353330bb7545afb3058b3bb24d4ac458e48893f]
end of score. overall amps: 0.0
overall samples out of range: 0
0 errors in performance
Elapsed time at end of performance: real: 0.001s, CPU: 0.001sTo clarify some things:
- Csound 7 is not released and not supported. Use csound 6.17, which is the last release. Use the csound6 branch if building from source.
- I don’t know what “python3-csound” is. csoundengine should install all its dependencies, even the external plugins needed.
If you need to install the dependencies yourself, you can do (from python 3.8, 3.9 or 3.10):
pip install risset
risset install “*”
pip install csoundengineSo I installed csound 6.16.2
This time python3.9 complained that ctcsound was missing.
I installed python3-csound and get the same error.
(?)Since my csound was out of date, I tried installing the latest version, got csound 7.0 running on ubuntu 20.04.
But that evidently doesn’t work for this. Suggestions?
On python 3.9, I do:
from csoundengine import Engine
and then
engine = Engine()
gets me:error: syntax error, unexpected STRING_TOKEN, expecting T_IDENT or T_TYPED_IDENT (token “”") line 68:
<<<
Parsing failed due to invalid input!
Stopping on parser failure
Error compiling base orchestra. A copy of the orchestra has been saved to /tmp/csoundengine-jwvuyq7q.orc
001
002 sr = 48000
003 ksmps = 64
004 nchnls = 2
……
645 schedule “__businit”, 0, ksmps/sr
end of score. overall amps: 0.0
overall samples out of range: 0
0 errors in performance
Traceback (most recent call last):
File “”, line 1, in
File “/home/forrest/.local/lib/python3.9/site-packages/csoundengine/engine.py”, line 586, in init
self.start()
File “/home/forrest/.local/lib/python3.9/site-packages/csoundengine/engine.py”, line 847, in start
self._startCsound()
File “/home/forrest/.local/lib/python3.9/site-packages/csoundengine/engine.py”, line 766, in _startCsound
raise CsoundError(f"Error compiling base ochestra, error: {err}")
csoundengine.errors.CsoundError: Error compiling base ochestra, error: -1Regarding midi, you can have csound handle midi directly, or you can handle midi on the python side and use it to schedule/control instruments.
Regarding the first option, you can pass any options when creating an engine to configure midi as you would in csound. For example
>>> e = csoundengine.Engine(commandlineOptions=['-+rtmidi=portmidi', '-Ma']) >>> e.compile(r''' instr 1 ... endin ''') >>> e.compile("massign 1, 1")For the second option, you can use any python library to interface with live midi. I would recommend rtmidi2: https://pypi.org/project/rtmidi2 (https://github.com/gesellkammer/rtmidi2)
I don’t find any built-in midi interface… So I just import mido or something of the sort?
Mac has no apt-get, so I tried installing with brew, but I got:
Error: No formulae found in taps.
apt-get install python3.9-dev
I went back to Python 3.9.9, but I got this error:
SystemError: Cannot compile ‘Python.h’. Perhaps you need to install python-dev|python-devel.ERROR: Failed building wheel for numpy
Failed to build numpyI could not pip install python-dev
Thanks for the catch. Fixed both in git and pypi. Python 3.10 is not supported yet since some dependencies have a broken ci build for 3.10.
Hello Eduardo,
I’m using Python 3.8.10 on Ubuntu 20.04. I get this error when importing csoundengine:
cannot import name ‘cache’ from ‘functools’
It seems that cache is a new feature of functools as of Python 3.9 only…
Regards
François
Hi,
As a part of an effort to make working with csound in python less painful I created csoundengine (https://github.com/gesellkammer/csoundengine), a python library built on top of ctcsound and offering many simplifications and less bureaucracy. Particularly if you are using python from within a jupyter notebook, csoundengine will use many of the display and interaction possibilities provided there to offer a more ergonomic experience.
An introduction and documentation can be found here:
https://csoundengine.readthedocs.io/en/latest/index.html
Eduardo
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
thanks for pointing it, removed
Csound mailing list Send bugs reports to Discussions of bugs and features can be posted here
