skip to Main Content

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!

2

Answers


  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
    
    Login or Signup to reply.
  2. It’s because your probably not add python into you PATH, try this : https://stackoverflow.com/a/23709194/14516256

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search