Если это важно, у меня стоитОчень рады за вас
ERROR: Could not find a version that satisfies the requirement kivy_deps.sdl2_dev~=0.3.1 (from versions: 0.4.2, 0.4.3, 0.4.4)
ERROR: No matching distribution found for kivy_deps.sdl2_dev~=0.3.1
from payeer_api import PayeerAPI
account = 'P1000000'
api_id = '123456789'
api_pass = 'KRicaFodFrgJer6'
p = PayeerAPI(account, api_id, api_pass)
p.get_balance()
Стоит ли устанавливать второй pythonСтоит. Нужно установить Python 3.5–3.8.
или есть другие способы?Есть. Установить данную библиотеку из исходников. Но лучше установить предыдущую версию Python.
# Download the latest release of SQLite source code and build the source
# amalgamation files (sqlite3.c and sqlite3.h).
$ wget https://www.sqlite.org/src/tarball/sqlite.tar.gz?r=release \
-O sqlite.tar.gz
$ tar xzf sqlite.tar.gz
$ cd sqlite/
$ ./configure
$ make sqlite3.c
# Copy the sqlite3 amalgamation files into the root of the pysqlite3 checkout
# and run build_static + build:
$ cp sqlite/sqlite3.[ch] pysqlite3/
$ cd pysqlite3
$ python setup.py build_static build
python -m pip install --upgrade pip