エラー内容
このチュートリアルにあるGithubページからaws-elastic-beanstalk-cli-setup
をクローンし、READMEに書いてあるとおり、以下のコマンドをコマンドプロンプトで実行したところ、
python .\aws-elastic-beanstalk-cli-setup\scripts\ebcli_installer.py
以下のエラーが出た。
ERROR: Could not find and "virtualenv" installed. Ensurevirtualenv is installed and that it is in PATH before executingthis script.
aws-elastic-beanstalk-cli-setup
のGithubページのREADMEのTroubleShootingに以下のように書いてあったので、コマンドを順番に実行したところ、
If you encounter an error with the message "No module named 'virtualenv'", use the following commands to install virtualenv and the EB CLI:
pip uninstall -y virtualenv pip install virtualenv python .\aws-elastic-beanstalk-cli-> setup\scripts\ebcli_installer.py
以下のエラーが出た。
WARNING: Failed to write executable - trying to use .deleteme logic (以下省略)
解決策
管理者権限でコマンドプロンプトを開いてからコマンド実行した。
pip uninstall -y virtualenv
pip install virtualenv
python .\aws-elastic-beanstalk-cli-setup\scripts\ebcli_installer.py
参考