2016-04-01 6 views
2

GitHubのAtom Editor用にatom-typescriptパッケージをインストールしようとしています。インストールボタンを押すと、次のエラーメッセージが表示されます。GitHubのAtom Editorに「[email protected]」をインストールできませんでした

Installing "[email protected]" failed. 

    gyp info it worked if it ends with ok 
    gyp info using [email protected] 
    gyp info using [email protected] | win32 | ia32 
    gyp http GET https://atom.io/download/atom-shell/v0.34.5/node-v0.34.5.tar.gz 
    gyp http 200 https://atom.io/download/atom-shell/v0.34.5/node-v0.34.5.tar.gz 
    gyp http GET https://atom.io/download/atom-shell/v0.34.5/SHASUM256.txt 
    gyp http GET https://atom.io/download/atom-shell/v0.34.5/node.lib 
    gyp http GET https://atom.io/download/atom-shell/v0.34.5/x64/node.lib 
    gyp http 200 https://atom.io/download/atom-shell/v0.34.5/x64/node.lib 
    gyp http 200 https://atom.io/download/atom-shell/v0.34.5/node.lib 
    gyp warn install got an error, rolling back install 

Compiler tools not found 

Packages that depend on modules that contain C/C++ code will fail to install. 

Read here for instructions on installing Python and Visual Studio 

何が問題なのかわかりません。

誰も同じ問題が発生しましたか?

あなたは、次のコマンドを発行し、その後アトムのすべてのインスタンスを閉じて、コマンドラインからインストールしようとすることができます

Image displaying the error

+0

これはatom-typescriptのまったく新しいインストールですか、使用しているAtomのバージョンと他にどのパッケージがインストールされていますか?私はちょうどそれを試して、それを最新のベータバージョンである 'Atom 1.7.0-beta4'にうまくインストールしました。 –

答えて

0

apm install atom-typescript 

これは新鮮でない場合は、インストール後、アンインストールしたいでしょう以前のパッケージの先頭:

apm uninstall atom-typescript 

同じエラーメッセージが表示された場合は、ネイティブツールが実際にインストールされているかどうかを確認できます

もし、後者のコマンドが失敗したら、あなたの質問を詳細で更新することができます。

1

手動代わり

CD ~/.atom/packages クローンgithubのからのプロジェクトにそれをインストールすることができ、

git clone https://github.com/TypeStrong/atom-typescript 

CD

atom-typescript 

へと

npm install 
を実行します

restart atom。

関連する問題