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
1
vote
0 answers

Install mediapipe on pydroid3

I'm working on a hand tracking project on Android phone using pydroid3. But I'm not able to install mediapipe on it. It says no matching distribution found. Kindly help if it's possible to install it.
1
vote
1 answer

Autocompletion is not working in the Pydroid 3 App

I cannot figure out how to get autocomplete to work on the python IDE for Android, Pydroid 3. It's the free version. Should autocomplete work? Dave
1
vote
1 answer

Matplotlib on Android (Pydroid)

I'm just learning to code. I use Pydroid on my tablet running Android 11. When I try to save a graphic drawn with plot() method, this IDE proposes to save a file to that directory: /data/user/0/ru.iiec.pydroid3/app_HOME. But I'm not able to find…
AxterD
  • 33
  • 5
1
vote
1 answer

How can i create a virtual environment on Pydroid3

I had tried it, but this was the result, please check below. /storage/emulated/0 $ cd venv3 /storage/emulated/0/venv3 $ virtualenv . PermissionError: [Errno 1] Operation not permitted:…
OLUWAFEMI
  • 11
  • 3
1
vote
0 answers

Did anyone use Pydroid 3 and Open cv?

I want to execute a python script on my phone and I found this application on play store. Did anyone use it before? Does it work with opencv normally? Thank you in advance.
May Abidi
  • 11
  • 2
1
vote
1 answer

Module not found issue in pydroid3

I recently upgrade my pydroid3 to version 3.8.3, after that i successfully installed my self made third party module but trying to importing it gives following error: Module Not Found Error In previous version, i didn't got such error.In google play…
Jeevan KC
  • 19
  • 3
1
vote
2 answers

How-to Launch Android Python Script via Shortcut on Homescreen

I've scoured the interwebs and couldn't find anything with python, android, and "shortcut" or "home-screen" to appear on the same page. I have pydroid3 installed, working great. I'd like to have a shortcut (ideally on the home-screen) that I can tap…
dsf
  • 145
  • 3
  • 8
1
vote
0 answers

How are multiple plots in Pydroid 3 made, each in separate windows?

I'm using a matplotlib.pyplot program in Pydroid 3 on a Samsung device. I find i can make a plot of a single graph, but in my program I'd like to make several plots each in a different window. (I've got Kivy and PyQt5 installed.) This works fine on…
neil
  • 11
  • 3
0
votes
0 answers

Pydroid 3 and kivy 2.2.0+

I can't install kivy any newer version than 2.0.0 but I need minimum 2.2.0 to work. It always stops on building wheel for kivy. It shows ERROR: Could not build wheels for kivy which use PEP 517 and cannot be installed directly It doesn't work…
Allamaris
  • 11
  • 3
0
votes
0 answers

Python Marshal Pydroid

Hi i have a code with python the code works in pydroid 3 succesful but when i try code on my pc it says ValueError: bad marshal data (unknown type code) its not special for this code i cant work any codes like this in python but i can run in…
0
votes
0 answers

Jupyter notebook not automatically opening up in browser in pydroid

I am using pydroid from a long time. I could use jupyter notebook easily earlier but now when I installed it again to use there is a problem. It doesn't open up automatically in the browser. It just writes this screen. I don't know how to fix it.…
Akash Rai
  • 1
  • 1
0
votes
2 answers

Clear terminal history in Pydroid 3

I could not figure out how to clear Pydroid's terminal history. I tried hictory -c and history -d and history -w and that does not work. Clear and cls are not available commands.
Hassan Voyeau
  • 3,383
  • 4
  • 22
  • 24
0
votes
1 answer

Change button size in vpython on Pydroid

I have the following code in Pydroid. I creates 3D text in Python on Android. I need to make the button bigger. import asyncio from vpython import * scene = canvas() scene.width = 1600 scene.height = 1600 text(text = "Hello World", align =…
Hassan Voyeau
  • 3,383
  • 4
  • 22
  • 24
0
votes
1 answer

How to install ursina on pydroid?

Hello I am trying to make minecraft using ursina on Android And once I tried to install ursina this error happend To fix this you could try to: 1. loosen the range of package versions you've specified 2. remove package versions to allow pip attempt…
user20545517
0
votes
1 answer

Keyboard in pydroid 3

I wrote a code, which writes numbers with some mistakes for discord. I checked on my laptop, it's worked, but on phone pydroid it isn't working. code: import keyboard as kb import random as rd import time as tm x = 0 tm.sleep(10) z = x+20 while…