Pythonは初めてで、Windowsにインストールしようとしています。Windowsフォルダーの監視サービスをセットアップし、そのフォルダーに変更があったときにデータベースを更新する必要があるため、使用し始めています。オンラインで検索すると、「ウォッチドッグ」に移動しました。
csvkitとwatchdogをインストールしようとしていますが、成功していません。pip
そしてeasy_install
両方の何もしていません。
Python 3.3.0 x86を実行します。
Windows 7 Professional pipを
インストールし、msiを使用して配布します。
Pythonコマンドシェルを実行する場合:
Input:
pip install watchdog
Output:
File "<stdin>", line 1
pip install watchdog
^
SyntaxError: invalid syntax
通常のコマンドプロンプト:
Input:
python pip install watchdog
Output:
python: can't open file 'pip': [Errno 2] No such file or directory
Breakthroughで言及されているように、以下のソリューションは正しいです。
Input:
pip install watchdog
しかしScripts
、環境変数にフォルダーがなかったため、エラー出力を受け取りました。
Output:
'pip' is not recognized ans an internal or external command, operable program or batch file.
追加するとC:\Python\Scripts
解決しました。
'pip' is not recognized ans an internal or external command, operable program or batch file.
その結果、パス変数をチェックアウトしましたが、Scripts
フォルダーがありませんでした。再度、感謝します!