Hello!
I have some trouble installing the latest version of the linux editor on Debian 9 Stretch.
➜ Downloads sudo dpkg -i unity-editor_amd64-2017.2.0xb6Linux.deb
Selecting previously unselected package unity-editor.
(Reading database ... 172671 files and directories currently installed.)
Preparing to unpack unity-editor_amd64-2017.2.0xb6Linux.deb ...
Unpacking unity-editor (2017.2.0xb6Linux) ...
dpkg: unity-editor: dependency problems, but configuring anyway as you requested:
unity-editor depends on npm; however:
Package npm is not installed.
It seems like its depending on the npm-package which does not exist anymore under Stretch but does under Jessie.
I know the official support is for Ubuntu, but as it has worked flawless under Debian Jessie I have high hopes for Stretch.
I’ve tried both the the --force-all and --ignore-depends=npm options while running the dpkg install. But as soon as I try to install something else with apt-get I get the following:
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
unity-editor : Depends: npm but it is not installable
And when I run sudo apt-get install -f I get:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following packages will be REMOVED:
unity-editor
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 8,106 MB disk space will be freed.
Do you want to continue? [Y/n]
Is the only solution to add jessie-backports (or similar) to the sources.list or is there any other way around it?
Thanks.