Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > fr.comp.lang.python > #4079
| From | Thierry Pinelli <festiventu+news@gmail.com> |
|---|---|
| Newsgroups | fr.comp.lang.python |
| Subject | Re: erreur de syntaxe sur python |
| Date | 2023-07-18 05:45 +0200 |
| Organization | Usenet, Canal histérique |
| Message-ID | <u951si$cq9$1@shakotay.alphanet.ch> (permalink) |
| References | <cb581dda-04e3-4312-a968-02d271d46517n@googlegroups.com> |
Le 17/07/2023 Bastien Chatainier <bastienchatainier@gmail.com> écrivait :
> salut je démarre en python et je voit que la commande pip install python-telegram-bot
> que j'ai vue sur un forum ne marche pas car la syntaxe du mot install ne correspond pas est-ce que vous pourriez m'aider ?
> ps:( j'essaye actuellement de coder un petit bot telegram grace a chat gpt )
>
> merci de votre aide
Bonjour,
C'est pourtant la bonne syntaxe
Chez moi (python 3.9.17) :
pinuche@toshinux:/tmp$ sudo pip install python-telegram-bot
Collecting python-telegram-bot
Downloading python_telegram_bot-20.4-py3-none-any.whl (549 kB)
549.0/549.0 kB 1.0 MB/s eta 0:00:00
Collecting httpx~=0.24.1 (from python-telegram-bot)
Downloading
httpx-0.24.1-py3-none-any.whl (75 kB)
75.4/75.4 kB 482.6 kB/s eta 0:00:00
Requirement already satisfied: certifi in
/usr/lib/python3.9/site-packages (from
httpx~=0.24.1->python-telegram-bot) (2023.5.7)
Collecting
httpcore<0.18.0,>=0.15.0 (from httpx~=0.24.1->python-telegram-bot)
Downloading httpcore-0.17.3-py3-none-any.whl (74
kB) 74.5/74.5 kB
392.0 kB/s eta 0:00:00 Requirement already
satisfied: idna in /usr/lib/python3.9/site-packages (from
httpx~=0.24.1->python-telegram-bot) (2.10)
Requirement
already satisfied: sniffio in /usr/lib/python3.9/site-packages (from
httpx~=0.24.1->python-telegram-bot) (1.3.0)
Collecting
h11<0.15,>=0.13 (from
httpcore<0.18.0,>=0.15.0->httpx~=0.24.1->python-telegram-bot)
Using cached h11-0.14.0-py3-none-any.whl (58 kB)
Requirement already satisfied:
anyio<5.0,>=3.0 in /usr/lib/python3.9/site-packages (from
httpcore<0.18.0,>=0.15.0->httpx~=0.24.1->python-telegram-bot) (3.6.2)
Installing collected
packages: h11, httpcore, httpx, python-telegram-bot
Attempting uninstall: h11
Found existing installation:
h11 0.9.0
Uninstalling h11-0.9.0:
Successfully uninstalled h11-0.9.0
Attempting
uninstall: httpcore
Found existing installation: httpcore 0.9.1
Uninstalling
httpcore-0.9.1:
Successfully uninstalled httpcore-0.9.1
Attempting uninstall: httpx
Found existing installation: httpx 0.13.3
Uninstalling httpx-0.13.3:
Successfully uninstalled httpx-0.13.3
ERROR: pip's dependency resolver does not
currently take into account all the packages that are installed. This
behaviour is the source of the following dependency conflicts.
googletrans 4.0.0rc1 requires httpx==0.13.3, but you
have httpx 0.24.1 which is incompatible. telepathy 2.3.2
requires beautifulsoup4==4.11.1, but you have beautifulsoup4 4.12.2
which is incompatible.
telepathy 2.3.2 requires
click~=7.1.2, but you have click 8.1.3 which is incompatible.
telepathy 2.3.2 requires requests~=2.28.1, but you have requests
2.31.0 which is incompatible. telepathy 2.3.2 requires
telethon==1.25.2, but you have telethon 1.28.5 which is incompatible.
Successfully installed h11-0.14.0 httpcore-0.17.3 httpx-0.24.1
python-telegram-bot-20.4 WARNING: Running pip as the
'root' user can result in broken permissions and conflicting behaviour
with the system package manager. It is recommended to use a virtual
environment instead: https://pip.pypa.io/warnings/venv
==========================================================
pinuche@toshinux:/tmp$ pip list | grep bot
python-telegram-bot 20.4
telebot 0.0.5
Back to fr.comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar
erreur de syntaxe sur python Bastien Chatainier <bastienchatainier@gmail.com> - 2023-07-17 06:34 -0700 Re: erreur de syntaxe sur python Thierry Pinelli <festiventu+news@gmail.com> - 2023-07-18 05:45 +0200 Re: erreur de syntaxe sur python Thierry Pinelli <festiventu+news@gmail.com> - 2023-07-18 05:47 +0200 Re: erreur de syntaxe sur python Thierry Pinelli <festiventu+news@gmail.com> - 2023-07-19 17:34 +0200
csiph-web