-
can't run example device_playout.py |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Turns out it didn't build correctly, the problem was with the command: "pip3 install -U pytgcalls[pyrogram]" , it installs pytgcalls version 2.1.0 while tgcalls installs version 3.0.0.dev5 |
Beta Was this translation helpful? Give feedback.
-
Added support for Pyrogram 2.0 pip install pytgcalls==3.0.0.dev22 Examples for dev versions: https://gist.github.com/MarshalX/3c99fcae532178928d93a7aae6f0efde Check this if you cant install: #44 |
Beta Was this translation helpful? Give feedback.
Turns out it didn't build correctly, the problem was with the command: "pip3 install -U pytgcalls[pyrogram]" , it installs pytgcalls version 2.1.0 while tgcalls installs version 3.0.0.dev5
As a result, I used the command: "pip3 install pytgcalls[pyrogram]==3.0.0.dev5", an error occurred during installation. So I tried to install the latest version of pytgcalls: "pip3 install pytgcalls[pyrogram]==3.0.0.dev22". As a result, everything was installed without errors.