前提・実現したいこと
Python用Pip.exeのダウンロードについて。
インスタグラムBot作成の為Pythonを始めましたが、初日で躓いております。
コマンドプロンプトにpip -Vと入力するもエラーが出てしまいます。
そもそもpip.exeがPC上にも見つかりません。
Windows Powershellでもpip install instapyの入力でエラーが出てしまいます。
エラーメッセージ ↓コマンドプロンプト上↓ C:\Users(ユーザー名)>where pip INFO: Could not find files for the given pattern(s). C:\Users(ユーザー名)>pip -V 'pip' is not recognized as an internal or external command, operable program or batch file. ↓Windows Powershellj上↓ PS C:\Users(ユーザー名)\Desktop\InstagramBot> pip install instapy pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + pip install instapy + ~~~ + CategoryInfo : ObjectNotFound: (pip:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
**### 該当のソースコード
試したこと
コマンドプロンプト上では下記表示が出ており、
Python自体のダウンロード、PATH設定はできていると思います。
C:\Users(ユーザー名)>where python
C:\Users(ユーザー名)\AppData\Local\Programs\Python\Python39\python.exe
C:\Users(ユーザー名)>python -V
Python 3.9.2
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー