Windows+Python3.6環境へのPyYAMLインストール¶
- 下記サイトでPyYAML3.12のWindows用インストーラを見ると、Python3.5用までしかサポートされていない
https://pyyaml.org/wiki/PyYAML - pypiのサイトを見ると、pipでインストールするようになっている
https://pypi.org/project/PyYAML/
Pyrhonのインストール先がProgram Files以外の場合¶
- ここでは、Python3.6.5をデフォルト設定でインストールした環境を利用している
C:\Users\openrtm\AppData\Local\Programs\Python\Python36\
C:\Users\openrtm\AppData\Local\Programs\Python\Python36\Scripts\
C:\Users\openrtm\AppData\Local\Programs\Python\Python36-32\
C:\Users\openrtm\AppData\Local\Programs\Python\Python36-32\Scripts\
- Pythonの64bit版の方へパスを通した環境でPyYAMLインストール
C:\Users\openrtm>pip install PyYAML Collecting PyYAML Downloading https://files.pythonhosted.org/packages/4a/85/db5a2df477072b2902b0 eb892feb37d88ac635d36245a72a6a69b23b383a/PyYAML-3.12.tar.gz (253kB) 100% |████████████████████████████████| 256kB 1.3MB/s Installing collected packages: PyYAML Running setup.py install for PyYAML ... error Exception: Traceback (most recent call last): File "c:\users\openrtm\appdata\local\programs\python\python36\lib\site-package s\pip\compat\__init__.py", line 73, in console_to_str return s.decode(sys.__stdout__.encoding) UnicodeDecodeError: 'utf-8' codec can't decode byte 0x83 in position 80: invalid start byte During handling of the above exception, another exception occurred: Traceback (most recent call last): File "c:\users\openrtm\appdata\local\programs\python\python36\lib\site-package s\pip\basecommand.py", line 215, in main status = self.run(options, args) File "c:\users\openrtm\appdata\local\programs\python\python36\lib\site-package s\pip\commands\install.py", line 342, in run prefix=options.prefix_path, File "c:\users\openrtm\appdata\local\programs\python\python36\lib\site-package s\pip\req\req_set.py", line 784, in install **kwargs File "c:\users\openrtm\appdata\local\programs\python\python36\lib\site-package s\pip\req\req_install.py", line 878, in install spinner=spinner, File "c:\users\openrtm\appdata\local\programs\python\python36\lib\site-package s\pip\utils\__init__.py", line 676, in call_subprocess line = console_to_str(proc.stdout.readline()) File "c:\users\openrtm\appdata\local\programs\python\python36\lib\site-package s\pip\compat\__init__.py", line 75, in console_to_str return s.decode('utf_8') UnicodeDecodeError: 'utf-8' codec can't decode byte 0x83 in position 80: invalid start byte You are using pip version 9.0.3, however version 10.0.1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' comm and.
- UnicodeDecodeErrorになる。これはコマンドプロンプトの文字コードを「ShiftJIS」から「UTF-8」にすれば解決するとのこと
https://qiita.com/akabei/items/da70ebf61cc413d5ff0d
- 上記サイトに従って操作
>chcp 現在のコード ページ: 932 >chcp 65001 Active code page: 65001
- PyYAMLインストール
C:\Users\openrtm>pip install PyYAML Collecting PyYAML Using cached https://files.pythonhosted.org/packages/4a/85/db5a2df477072b2902b 0eb892feb37d88ac635d36245a72a6a69b23b383a/PyYAML-3.12.tar.gz Installing collected packages: PyYAML Running setup.py install for PyYAML ... done Successfully installed PyYAML-3.12 You are using pip version 9.0.3, however version 10.0.1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' comm and.
- 確認
C:\Users\openrtm>python Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD6 4)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import yaml >>>
- 同様にしてPython32bitの方へもインストールする
Pyrhonのインストール先がProgram Files下の場合¶
- Pythonインストール時、カスタムセットアップで「Install for all users」オプションにチェックを入れるとインストール先がProgram Files下になる
- このため、コマンドプロンプトを管理者で実行しないとインストールできない
- 他の手順はProgram Files以外にインストールする場合と同じ