[AWS] Python2.7環境にawscliとboto3をインストールするときの問題回避メモ
はじめに
AWS LambdaのPythonのバージョンは、Python 2.7。
Windows Anaconda環境, Python 2.7環境にawscliとboto3をインストールするときの問題回避メモです。
回避する問題は下記の2点。
-
win-64用のawscli, boto3パッケージが見つからない(Windows Anaconda環境で発生)
> conda install awscli PackageNotFoundError: Package not found: '' Package missing in current win-64 channels: - awscli > conda install boto3 PackageNotFoundError: Package not found: '' Package missing in current win-64 channels: - boto3
-
Unicode Warning(Python 2.7環境で発生)
コマンド例> aws s3 ls s3://<bucket_name>
Anaconda2環境で発生するUnicodeWarning
Anaconda2\lib\site-packages\dateutil\parser.py:605: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal elif res.tzname and res.tzname in time.tzname:
AWSCLIをmsiインストールした環境で発生するUnicodeWarning
C:\Program Files\Amazon\AWSCLI\.\dateutil\parser.py:601: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
awscliのインストール
Windows環境の場合は、conda-forgeを指定します。
> conda install -c conda-forge awscli
boto3のインストール
Windows環境の場合は、conda-forgeを指定します。
> conda install -c conda-forge boto3
インストール状況の確認
-
Anaconda3
> aws --version
aws-cli/1.10.44 Python/3.5.2 Windows/10 botocore/1.4.34
-
Anaconda2
> aws --version
aws-cli/1.10.44 Python/2.7.12 Windows/10 botocore/1.4.34
Anaconda3
> aws --version
aws-cli/1.10.44 Python/3.5.2 Windows/10 botocore/1.4.34
Anaconda2
> aws --version
aws-cli/1.10.44 Python/2.7.12 Windows/10 botocore/1.4.34
※ awsコマンドは、AnacondaのScriptsフォルダにパスが通っている必要があります。
Python 2.7環境で発生するUnicode Warningの暫定対策
暫定対策ですが、UnicodeWarning
を抑制します。
-
awsコマンド
Anaconda2\Scripts\aws.cmd 19行目に-W ignore::UnicodeWarning
を指定します。変更前.py%PythonExe% -x %PythonExeFlags% "%~f0" %*
変更後.py%PythonExe% -W ignore::UnicodeWarning -x %PythonExeFlags% "%~f0" %*
※ AWSCLI64.msiをインストールしている場合はAWSCLI64.msiをアンインストールします。
-
pythonコマンド
-W ignore::UnicodeWarning
を指定します。
Botoのサンプルを実行する場合の例> python -W ignore::UnicodeWarning .\s3_sample.py
-
IPython
IPython起動時にUnicodeWarning抑制スクリプトを実行します。
~/.ipython/profile_default_startup
or<user_home>\.ipython\profile_default\startup
00-ignore-UnicodeWarning.pyimport warnings warnings.filterwarnings('ignore', category=UnicodeWarning)
Author And Source
この問題について([AWS] Python2.7環境にawscliとboto3をインストールするときの問題回避メモ), 我々は、より多くの情報をここで見つけました https://qiita.com/hitomatagi/items/a257395637bc936b20c4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .