Last active
August 29, 2015 14:01
-
-
Save believe2200/fc681d6434c5ea05aa9b to your computer and use it in GitHub Desktop.
cordova インストール
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordovaのインストール | |
node.js→npm(バージョン管理)→cordova | |
node.jsのインストール(npmも含まれる) | |
http://nodejs.org/ | |
node.jsのバージョンを確認する | |
node -v | |
npmのバージョンを確認する | |
npm -v | |
cordovaのインストール | |
sudo npm install -g cordova | |
cordovaのバージョンを確認する | |
cordova -v | |
/sdk/toolsと/sdk/platform-toolsディレクトリにパスを通す | |
echo "export PATH=$PATH:path/to/adt-bundle-mac-x86_64-20130729/sdk/tools/" ~/.bash_profile | |
echo "export PATH=$PATH:path/to/adt-bundle-mac-x86_64-20130729/sdk/platform-tools/" ~/.bash_profile | |
source ~/.bash_profile | |
.bash_profileの中身 | |
export PATH=$PATH:/Applications/sdk/platform-tools/ | |
export PATH=$PATH:/Applications/sdk/tools/ | |
export PATH=/usr/local/bin:$PATH | |
ターミナルからandroidコマンドとadbコマンドが実行できることを確認 | |
android -h | |
adb version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment