'How do I install pytelegrambotapi on visual code studio

I am quite confuse as I tried to install it using the command $ pip install pyTelegramBotAPI on VS terminal but it does not seem to work https://i.stack.imgur.com/ZYXMA.png (image of the error), I tried looking up for telegrambot extension but could not any in VS. Please guide me through. Thank you ~ I really want to import telebot but it does not work till I install it ( i assume)



Solution 1:[1]

For Windows, in Command Prompt (Admin) try to run pip install using the Python executable:

python -m pip install pyTelegramBotAPI

Solution 2:[2]

Firestore only stores JSON data. You have to host your image somewhere in order to display it. You should use firebase_storage for storing that image.

Future<String> getImageUrl() async {
    Reference ref =
        FirebaseStorage.instance.ref().child('pathToImage');
    String url = await ref.getDownloadURL();
    return url;
  }

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 MingJie-MSFT
Solution 2 Hrvoje ?ukman