Debian 9 での Vue.js のインストールの難しさ

Debian 9 での Vue.js のインストールの難しさ

Debian 9 OS に Vue.js をインストールしようとしていますが、次のエラー メッセージが表示されます: [不正な命令] - rollbackFailedOptional: verb npm-session 1fd93108cdc88b2

このコマンドを実行すると: npm インストール vue

npmのバージョンは6.13.7です

私は問題を抱えていましたsudo apt-getアップデート次のようなエラーが発生します。

Ign:25 http://ppa.launchpad.net/ondrej/php/ubuntu focal/main DEP-11 64x64 Icons
Fetched 15.4 kB in 8s (1,813 B/s)                   
Reading package lists... Done
W: The repository 'http://ppa.launchpad.net/ondrej/php/ubuntu focal Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: GPG error: http://ppa.launchpad.net/webupd8team/brackets/ubuntu bionic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY C2518248EEA14886
W: The repository 'http://ppa.launchpad.net/webupd8team/brackets/ubuntu bionic InRelease' is not signed.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://ppa.launchpad.net/ondrej/php/ubuntu/dists/focal/main/source/Sources  404  Not Found [IP: 91.189.95.83 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.

StackExchangeとWebでこのエラーを検索し、関連する解決策を試しましたが、成功しませんでした。

答え1

ディレクトリを変更して、/etc/apt/sources.list.dOndrej および Barckets PPA を削除し、phpバージョンと barckets (Ubuntu Bionic および Focal に属するパッケージ) も削除します。

Barcketsをインストールするにはdebファイルをダウンロードしてくださいここから:

sudo apt install gdebi
wget https://github.com/adobe/brackets/releases/download/release-1.14.1/Brackets.Release.1.14.1.64-bit.deb
sudo gdebi Brackets.Release.1.14.1.64-bit.deb

ondrej リポジトリを追加するには、次を使用します。

sudo apt install apt-transport-https lsb-release ca-certificates curl
sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
printf "deb https://packages.sury.org/php/ $(lsb_release -sc) main" |sudo tee  /etc/apt/sources.list.d/php.list
sudo apt update

vueそしてvue-cliインストールします:

npm install -g npm
npm install -g vue
npm install -g @vue/cli

関連情報