npm i @solana/web3.js @solana/spl-tokenの実行でnpm ERR!が出ないようにしたい
参考URL:https://www.quicknode.com/guides/web3-sdks/how-to-mint-an-nft-on-solana
仮想通貨solanaにおけるNFTに関する開発環境をインストールしようとしています。
githubのcloneを使うんですが、途中でエラーが出て進みません。
npm ERR!系のメッセージが複数でます。
npm WARN `git config --get remote.origin.url` returned wrong result (git://github.com/solana/web3.js) git@github.com:uniSara/SolanaNFT.git npm WARN `git config --get remote.origin.url` returned wrong result (git://github.com/solana/spl-token) git@github.com:uniSara/SolanaNFT.git npm WARN `git config --get remote.origin.url` returned wrong result (git@github.com:solana/spl-token) git@github.com:uniSara/SolanaNFT.git npm WARN `git config --get remote.origin.url` returned wrong result (git@github.com:solana/web3.js) git@github.com:uniSara/SolanaNFT.git npm ERR! git clone git@github.com:solana/spl-token Cloning into bare repository '/Users/saratanidaisuke/.npm/_git-remotes/git-github-com-solana-spl-token-a2469ddb'... npm ERR! git clone git@github.com:solana/spl-token ERROR: Repository not found. npm ERR! git clone git@github.com:solana/spl-token fatal: Could not read from remote repository. npm ERR! git clone git@github.com:solana/spl-token npm ERR! git clone git@github.com:solana/spl-token Please make sure you have the correct access rights npm ERR! git clone git@github.com:solana/spl-token and the repository exists. npm ERR! addLocal Could not install solana/spl-token npm ERR! Error: ENOENT, stat 'solana/spl-token' npm ERR! If you need help, you may report this log at: npm ERR! <http://github.com/isaacs/npm/issues> npm ERR! or email it to: npm ERR! <npm-@googlegroups.com> npm ERR! System Darwin 19.6.0 npm ERR! command "node" "/usr/local/bin/npm" "i" "@solana/web3.js" "@solana/spl-token" npm ERR! cwd /Users/saratanidaisuke/SolanaNFT npm ERR! node -v v0.11.9 npm ERR! npm -v 1.3.15 npm ERR! path solana/spl-token npm ERR! code ENOENT npm ERR! errno -2 npm ERR! git clone git@github.com:solana/web3.js Cloning into bare repository '/Users/saratanidaisuke/.npm/_git-remotes/git-github-com-solana-web3-js-bd83ab5c'... npm ERR! git clone git@github.com:solana/web3.js ERROR: Repository not found. npm ERR! git clone git@github.com:solana/web3.js fatal: Could not read from remote repository. npm ERR! git clone git@github.com:solana/web3.js npm ERR! git clone git@github.com:solana/web3.js Please make sure you have the correct access rights npm ERR! git clone git@github.com:solana/web3.js and the repository exists. npm ERR! addLocal Could not install solana/web3.js npm ERR! npm ERR! Additional logging details can be found in: npm ERR! /Users/saratanidaisuke/SolanaNFT/npm-debug.log npm ERR! not ok code 0
該当のソースコード
Terminal
1npm i @solana/web3.js @solana/spl-token
試したこと
githubでssh作成して成功
Terminal
1% ssh -T git@github.com 2Hi uniSara! You've successfully authenticated, but GitHub does not provide shell access.
リポジトリ作成済み
補足情報(FW/ツールのバージョンなど)
エラー内容を調査したところgithubのpublickeyが未作成であるのが原因とのことだったので作成しました。
それでもエラーが出るので困っています。
あなたの回答
tips
プレビュー