Page 1 of 1

Is Ingen dead?

Posted: Sun May 12, 2019 8:27 am
by LinMusGuy
Is Ingen dead? It looks interesting for building modular synths, but there is hardly any information about it on the internet and I cannot find how to install it on my Linux Mint computer.

https://libremusicproduction.com/tools/ingen

Re: Is Ingen dead?

Posted: Sun May 12, 2019 12:16 pm
by noedig
Ingen is in the KXStudio repositories.

Follow the instructions here to add the repositories to your Linux Mint:
https://kx.studio/Repositories

Then search for Ingen using Synaptic (or apt).

Re: Is Ingen dead?

Posted: Sun May 12, 2019 12:21 pm
by Linuxmusician01
Its homepage is: zhttp://drobilla.net/software/ingen (won't work if you're behind a VPN). They still appear to actively develop it if I look at its git. I can install Ingen in my old Linux Mint LTS Rebecca 17 via the KXStudio repository. Nood need to compile from source.

Seems to be a great peice of software to create your own synth via a gaphical object oriented application. Thanks for the tip, I think I'll try a tutorial to build a simple synth. Might be an alternative for Pure Data. :)

Tutorial Youtube: https://www.youtube.com/watch?v=eMj-q5adAZ4

[edit 01] Didn't see @noedig his reply.

[edit 02, 17-5-'19] Made a typo. The home page is http://drobilla.net/software/ingen.

Re: Is Ingen dead?

Posted: Fri May 17, 2019 12:47 pm
by tavasti
Linuxmusician01 wrote:Its homepage is: zhttp://drobilla.net/software/ingen (won't work if you're behind a VPN).
I bet that link with protocol zhttp won't work for most of the people anyway. At least my firefor does not know such protocol.

Re: Is Ingen dead?

Posted: Fri May 17, 2019 2:24 pm
by Linuxmusician01
tavasti wrote:
Linuxmusician01 wrote:Its homepage is: zhttp://drobilla.net/software/ingen (won't work if you're behind a VPN).
I bet that link with protocol zhttp won't work for most of the people anyway. At least my firefor does not know such protocol.
Ooops. I made a typo. One must leave out the "z", so its: http://drobilla.net/software/ingen.

Re: Is Ingen dead?

Posted: Sun Jul 31, 2022 6:27 pm
by LinMusGuy
I'm still interested in Ingen as it looks like a Linux alternative to SynthEdit or FlowStone. I found some info and files on GitHub. However following the instructions in the INSTALL-file I immediately ran into an error:

Code: Select all

/usr/bin/env: ‘python’: No such file or directory
(I can't find Ingen in the KXStudio repositories.)

Re: Is Ingen dead?

Posted: Sun Jul 31, 2022 9:50 pm
by sysrqer
You might want to look into bespokesynth, it's quite similar and actively developed. Alternatively, bitwig offers an environment like ingen.

Re: Is Ingen dead?

Posted: Sun Jul 31, 2022 10:09 pm
by LinMusGuy
I'm particularly interested in the possibility of exporting your own patch as a plugin. Don't know if that's possible with Bespoke or Bitwig?

Re: Is Ingen dead?

Posted: Mon Aug 01, 2022 1:22 am
by Kott
LinMusGuy wrote: Sun Jul 31, 2022 6:27 pm I'm still interested in Ingen as it looks like a Linux alternative to SynthEdit or FlowStone. I found some info and files on GitHub. However following the instructions in the INSTALL-file I immediately ran into an error:

Code: Select all

/usr/bin/env: ‘python’: No such file or directory
(I can't find Ingen in the KXStudio repositories.)
run waf with python3:

Code: Select all

python3 ./waf configure
BespokeSynth or Bitwig cannot act as plugins

Re: Is Ingen dead?

Posted: Mon Aug 01, 2022 1:16 pm
by LinMusGuy
Some of the errors I get:

Code: Select all

~/SomeProgs/Ingen/ingen-master$ python3 ./waf configure 
error: Failed to import waf (cannot import name 'Context' from 'waflib' (unknown location))

~/SomeProgs/Ingen/ingen-master$ ./waf --help
/usr/bin/env: ‘python’: No such file or directory

~/SomeProgs/Ingen/ingen-master$ python3 ./waf --help
error: Failed to import waf (cannot import name 'Context' from 'waflib' (unknown location))

Re: Is Ingen dead?

Posted: Mon Aug 01, 2022 2:35 pm
by LinMusGuy
Isn't Waf automatically installed with Python3?