1

Я пытаюсь построить приложение (код Visual Studio) из исходного кода на Debian. При попытке выполнить инструкции по сборке Node-JS отказался от установки.

# apt-get install nodejs-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 nodejs-dev : Depends: libssl-dev (>= 1.0.0g) but it is not going to be installed
              Depends: libc-ares-dev (>= 1.7.5) but it is not going to be installed

Я попытался установить неотмеченный зависимый один за другим, чтобы найти источник проблемы:

# apt-get install libssl-dev
The following packages have unmet dependencies:
 libssl-dev : Depends: libssl1.0.0 (= 1.0.1t-1+deb8u2) but 1.0.2d-1 is to be installed
              Recommends: libssl-doc but it is not going to be installed

А-а ...

# apt-get install libssl1.0.0
libssl1.0.0 is already the newest version (1.0.2d-1).

Там. Как я вижу, я должен установить libssl1.0.0 (чтобы установить этот NodeJS), сохраняя libssl1.0.2d-1 (чтобы не нарушать существующие зависимости). Как мне это сделать? И, самое главное, не приведет ли ошибка к установке двух версий одной и той же библиотеки?

0