Questions tagged [pydroid]

Pydroid is a Python environment for Android. There are versions for Python 2 and Python 3.

Pydroid is a Python environment for Android.

There are versions for Python 2 and Python 3.

Code samples are included, as well as samples for the use of different libraries (numpy, matplotlib, kivy, tkinter, ...).

97 questions
33
votes
13 answers

Using python and matplotlib on android

Is there a way to set up python 2.7.x + matplotlib on an android tablet so that you can run simple standard python code? I would like to be able to run the same scripts I run on my Linux desktop. This is just for my own use and I don't need to…
marshall
  • 2,443
  • 7
  • 25
  • 45
5
votes
1 answer

Install Git in Pydroid 3 terminal

I'm using Pydroid3 and would like to use Git in the Pydroid Terminal. In my Termux terminal I was able to install Git as described here: Python and Git on Android The git command is now only recognized in the Termux Terminal but not in Pydroid :(.…
oholimoli
  • 73
  • 1
  • 9
5
votes
8 answers

Matplotlib with Pydroid 3 on Android: how to see graph?

I'm currently using an Android device (of Samsung), Pydroid 3. I tried to see any graphs, but it doesn't works. When I run the code, it just shows me a black-blank screen temporarily and then goes back to the source code editing window. (means that…
stari
  • 73
  • 1
  • 1
  • 7
3
votes
1 answer

Python app on Android: running through PyDroid is twice faster than compiled app via Buildozer! Why?

I am developing a mobile game for Android in Python using PyGame. So for debugging purposes, I have often used PyDroid, which is basically a mobile IDE for editing Python code on an Android mobile device. It also allows me to run the whole app in…
Vito Gentile
  • 13,336
  • 9
  • 61
  • 96
2
votes
0 answers

In pydroid3, I have installed pywhatkit5.4 using pip menu. But, import pywhatkit in program fails

Traceback (most recent call last): File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 31, in start(fakepyfile,mainpyfile) File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py",…
SC Shekar
  • 21
  • 1
2
votes
2 answers

How to read latin caracters (Python)?

I am learning to write code in Python. I've décided to write a program to increase smbs typing speed. That's why I've found several text documents to select random words from. I have a problem while reading the french file. It replaces 'é' caracters…
AxterD
  • 33
  • 5
2
votes
2 answers

How to solve error installing kivymd in Pydroid in NOX?

I was testing my Kivymd app with Pydroid 3, and then I thought it will be better if I can use Pydroid 3 on PC. So I installed the Nox emulator and installed Pydroid 3 app, and I tried to install kivymd with pip. Then it said Pydroid repository…
Superjay
  • 447
  • 1
  • 7
  • 25
2
votes
1 answer

I'm Having Problem in pydroid 3 on my android device with espeak library

code: So This is my pydroid3 python script and when i try to run it import pyttsx3 speaker = pyttsx3.init() speaker.say("Mama I Can Talk ") speaker.runAndWait() error: This is the error that occurs every time even though i downloaded all the espeak…
Sabir Makhdoomi
  • 23
  • 1
  • 1
  • 3
2
votes
1 answer

Run a counter in the background

Im trying to create an upgrader/tycoon game and realised to have the money continuously going up, I would have to start a different process so I can have my GUI which can be used as the money goes up without either stopping the other from…
user13524876
1
vote
1 answer

Error on android using uiautomator2 on Pydroid3

I'm trying to automate tasks on Android, but when I run my code on Pydroid3 on Android, it return me a error... My device is a Asus Zenfone Selfie 4 I'dont understand this error because the error is about a ADB EXE problem. Android have ADB EXE? The…
1
vote
1 answer

Issues while downloading on pydroid

import seaborn as sns sns.load_dataset('iris') urllib.error.URLError: import nltk nltk.download("wordnet") [nltk_data] Error loading wordnet:
1
vote
1 answer

pydroid showing terminal when importing matplotlib

I'm working on a project that creates some graphics using matplotlib in pydroid but I need to see some output in the terminal but when I import matplotlib and run the code it shows the matplotlib GUI window and not the pydroid terminal how can I…
1
vote
0 answers

Having problem with buttons name and command in tkinter

Hello I am using pydroid 3 I'm working in a mini project on my own to learn more about gui and python It's a mind game the program will randomly choose a number up to 9 there are 9 buttons you need to remember the chosen button by system and press…
1
vote
0 answers

Running my python project using the pysimplegui module on android (with pydroid3?)

i want to run my python project on an android device. Is there a way to run it on android? I tried with pydroid3 and the plugininstaller and got the error message: "gui applications cannot be ran from terminal use ide to run these applications." But…
Steffen
  • 11
  • 1
1
vote
0 answers

Runtime using fernet library

I was recently learning about encryption in python and tried out fernet library. Encryption and decryption was successful but I have some questions about the Runtime. While encrypting py,txt files which are usually of low storage size(bytes),…
1
2 3 4 5 6 7