私は持っています pip install
ライブラリ(ed 知力 )と Python 3.5.1、これもいくつかのスクリプトを Scripts
Pythonインストールのサブディレクトリ:
>dir "%pythonpath%"\hex2*
Volume in drive C is System
Volume Serial Number is 0000-ABCD
Directory of C:\Program Files\Python35\Scripts
09.10.2016 08:13 4.698 hex2bin.py
09.10.2016 08:13 4.563 hex2dump.py
2 File(s) 9.261 bytes
0 Dir(s) 55.359.901.696 bytes free
それを仮定することができます PYTHONPATH
で述べた 環境変数に関するPython on Windowsの資料 スクリプトを検索するために使用されるかもしれませんが、作業ディレクトリが別のディレクトリである場合、Pythonはスクリプトを見つけません。
>python hex2bin.py flash.hex
python: can't open file 'hex2bin.py': [Errno 2] No such file or directory
PYTHONPATH
検索パスとしてのみ意図されています import
ingモジュール: https://stackoverflow.com/questions/19917492/how-to-use-pythonpath
与えられたパスをPythonインタプリタの検索パスとして使う方法はありますか?