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
0
votes
0 answers

Pydroid 3 forex pip

is there a way to use the forex_python pip on pydroid . My code is correct but everytime I run it just says program finished I tried a code that would allow me see the currency rates of USD in other countries but it just says program finished…
0
votes
1 answer

How to Install CoolProp in python3.9+(windows) and PyDroid3(Android)

I am having trouble installing CoolProp on python 3.9. It installed perfectly on python 2.7 and Thonny which uses python 3.7 When I try to run pip install CoolProp on python 3.9.5 on windows and also on PyDroid3 for android, I come across the…
0
votes
1 answer

Super object has no attribute '__getattr__' python, kivymd

This is one of those questions I've looked everywhere for the answer and can't find it anywhere. I can't access ids at all. I've printed the screen and the screen shows the ids I need but when I try to pull the ids I get key error ex ids['delete']…
XZeeno
  • 13
  • 4
0
votes
0 answers

I want to get latex to work with matplotlib on pydroid, so I can use easily implement scientific symbols in my plots

I've used pydroid's pup to install latex, and have matplotlib, but I can't find any documentation on whether it's even possible to use latex when creating plots with pydroid. The key error I get is: FileNotFoundError: [Errno 2] No such file or…
0
votes
1 answer

How can I move my python code and assets from a windows Laptop to an android phone?

I've made a discord.py bot and want to run it on my spare phone with pydroid3 but I cant figure out how to move the main.py file and the 55 asset files (most of them are .png but some are .json and .txt) from my laptop to my phone. The file…
Mayedl10
  • 51
  • 1
  • 1
  • 6
0
votes
0 answers

Convert Dataframe to image in Pydroid 3

using dataframe_image library , i am able to convert the dataframe to image in windows whereas when i am running same code in pydroid 3 it is giving the error 'No module named 'dataframe_image'. is there any way to convert dataframe to image in…
MD SAJID
  • 106
  • 1
  • 8
0
votes
0 answers

Pydroid3 cannot access python binary

I removed python 3.9 binary from pydroid3 and replaced it with python 3.10 binary by linking from another directory.After creating symlink to linked binary as root,i gave ownership to the user that pydroid3 use,but pydroid3 didn't have permission to…
0
votes
1 answer

How can I write 2 input to python subprocess

I am trying to use subprocess library. The file that I am trying to run with subprocess: a = input() print(a) Here is what I tried: import subprocess p = subprocess.Popen(['python', 'registration.py'],…
hvsniddin
  • 3
  • 4
0
votes
0 answers

How to install apt or pkg in Pydroid 3

I want to install apt or pkg package manager and Termux repositories (main-repo, root-repo, x11-repo) on Pydroid 3. How can I do this? Help me please!
0
votes
1 answer

Selenium with Pydroid

I have a basic webscraper using Selenium which I would like to be able to run on my phone when I am away from my PC. I need information generated by Javascript so Beautiful Soup isn't an option. I found Pydroid which allows me to run Python scripts…
L10Yn
  • 211
  • 2
  • 10
0
votes
2 answers

File "" SyntaxError: invalid syntax

I've recently been trying to code a program which plays domino with two players and with input, but apparently my syntax is flawed at the line where I define a function. I think it might be because of my near-zero experience with coding , but after…
0
votes
0 answers

How can I leave a voice and speech recognition program in the background? I'm mainly using the Androidhelper library

Hello I was making a program about speech and speech recognition, but I don't know how to leave it in the background, I'm mainly using Androidhelper as the main source, besides, there is some other way of voice recognition in qlpython
0
votes
1 answer

How to run multiple terminal sessions (Tabs) in pydroid 3

I am trying to create an app using pydroid 3. When I view if the project is setup properly with python manage.py runserver Everything is set up ok but when it's time to start the app, I have to open another terminal or tab while the terminal with…
0
votes
0 answers

PyDroid interpreter "64-bit instead of 32-bit"

AT Hello ran into trouble that my interpreter PyDroid decided to throw an error error: "/data/user/0/ru.iiec.pydroid3/files/ aarch64-linux-android/bin/python3.9" is 64-bit instead of 32-bit Happened after changing device, previously used Redmi,…
mr Foxy
  • 1
  • 1
0
votes
1 answer

Using tesseract on Pydroid

I am using Pydroid on an android tablet just to play around a bit with python. My PC is out of comission for a bit. I am trying to build a OCR project to practice a bit but I need to use tesseract. There is a line where I have to point to…