0

Today i've tried to create my own Telegram bot(i'm new at python), and i wanted to install pyTelegramBotAPI, i used 'pip' but it wrotes pip is not internal or external command, executable program, or batch file. Who can explain me how to use 'pip' in cmd correctly, without this errors? Thanks for attention!

phd
  • 82,685
  • 13
  • 120
  • 165
NeoTech
  • 21
  • 5
  • https://stackoverflow.com/search?q=%5Bpip%5D+pip+is+not+internal+or+external+command%2C+executable+program%2C+or+batch+file – phd Oct 27 '20 at 07:42

2 Answers2

1

I assume you have python installed. type the following command

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

then in the same directory

python get-pip.py
BeeFriedman
  • 1,800
  • 1
  • 11
  • 29
1

It's because your probably not add python into you PATH, try this : https://stackoverflow.com/a/23709194/14516256