Python + PySide for MinXSS_Beacon_Decoder2017年03月27日 18時35分

Python と PySide に依存する 「MinXSS_Beacon_Decoder」 のインストールを試み
てみました。Python には、Ver2系と Ver3系がありますが、PySide は Ver3系に
は対応していません。従って、Python は最初から Ver2系をインストールすると
よいでしょう。また、Python のインストール後のフォルダも Python 2.7.13 は
 C:\ の直下であるのに対し、Python 3.6.1 では相当に下の階層フォルダにイン
ストールされています。この点からも Python は、Ver2系をインストールすべき
です。また下記の説明の中では、コマンドで Python にパス(Path)を通すように
していますが、Python のインストールの最初に 「Add  Python.exe to Path」 を
有効にしておけば手間が省けます。本日の実験はここまで。(以下、後日に続く)

  

(Successfully)
Download Python 2.7.13
http://www.python.org/downloads/

Download MinXSS_Beacon_Decoder
http://github.com/jmason86/MinXSS_Beacon_Decoder
Use the "Clone or download" button and select "Download zip".

On command prompt in Windows,
Path C:\Python27

[sample.py] print('Hello')
cd /d D:\minxss\MinXSS_Beacon_Decoder-master
D:\minxss\MinXSS_Beacon_Decoder-master>python sample.py
Confirm 'Hello'

Install PySide
cd /d C:\Python27
C:\Python27>python -m pip install -U PySide
(Successfully installed PySide-1.2.4)

[minxss_beacon_decoder.py]
cd /d D:\minxss\MinXSS_Beacon_Decoder-master
D:\minxss\MinXSS_Beacon_Decoder-master>python minxss_beacon_decoder.py
(On going)

------------------------------------------------------------------------
(Failure)
Download Python 3.6.1
http://www.python.org/downloads/

Download MinXSS_Beacon_Decoder
http://github.com/jmason86/MinXSS_Beacon_Decoder
Use the "Clone or download" button and select "Download zip"

On command prompt in Windows,
Path C:\Users\Owner\AppData\Local\Programs\Python\Python36-32

[sample.py] print('Hello')
cd /d D:\minxss\MinXSS_Beacon_Decoder-master
D:\minxss\MinXSS_Beacon_Decoder-master>python sample.py
Confirm 'Hello'

Install PySide
cd /d C:\Users\Owner\AppData\Local\Programs\Python\Python36-32
C:\Users\Owner\AppData\Local\Programs\Python\Python36-32>python -m pip install -U PySide
(Failure)