googleplay-api
googleplay-api copied to clipboard
ImportError: No module named 'gpapi.googleplay'
I work with python 3.5. When I run test.py file I getting following error:
Traceback (most recent call last):
File "test.py", line 1, in
Not found gpapi.googleplay but this module is exist. How can ı run this project . Thanks..
You should install the module along with all its dependencies. The recommended way to do it is using a virtual environment, and installing the project inside it with pip:
[user ~]$ cd googleplay-api
[user ~]$ virtualenv --python=python3 .venv
[user ~]$ source .venv/bin/activate
(.venv) [user ~]$ pip install .
...
(.venv) [user ~]$ python test/test.py -e mymail -p mypass
@kadirdoganceng this single command can solve your problem: pip install gpapi (run on terminal)