-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the app crach in time of import psycopg2 #2240
Comments
From https://pypi.org/project/psycopg2/
The C needs to be compiled for ARM. Specifying the uncompiled psycopg2 and the compiled psycopg2-binary in requirements is probably not helpful. p4a has a recipe mechanism for compiling non pure Python packages, a list of implemented packages is here: The alternatives are finding a pure Python package, or building a recipe Not a bug I think. |
I didn't realised the |
Hi thank u for reply for the psycopg2 - Binary I have already test without it but still the same error |
I think this is the expected result with psycopg2 (psycopg2-binary contains nothing useful) |
Thank u but what is the Arm and what do u think I should do |
ARM is a processor architecture, the C code must be compiled to generate binaries for the instruction set of a particular processor architecture (usually ARM or derivatives of intel's x86). Android uses ARM, desktops use Intel based (Apple's announcement aside). What you should do depends on your needs, not a question I can answer. As I stated previously the options I know of are: 1) an existing recipe, 2) find a pure Python package, 3) write a recipe. If you have to ask about ARM, I'd suggest that 3) might be a a challenge. If 2) exists (see below) and if the speed is sufficient then this would be the easiest. And for 1) I don't know if the available recipes meet your need or what app changes would be required. A quick Google search returns a starting point: https://wiki.postgresql.org/wiki/Python |
What do you mean @Ham-Merhead? We do have a recipe for https://github.com/kivy/python-for-android/blob/v2020.06.02/pythonforandroid/recipes/psycopg2/__init__.py right? |
My error about the existence of the recipe, so yes it looks like a bug. |
thank u but please what do u mean by using pure python |
pure Python - the code is python and no other language. |
In the exemple I used just python I didn't even use kivy |
From https://pypi.org/project/psycopg2/
So the app is not pure Python The app code may be pure Python, but psycopg2 is not pure Python and the app uses psycopg2. Which is why we talk about compiling C with a recipe. This is what appears to be failing in this case. A pure Python alternative works around this issue (assuming it does work!, and it is fast enough) by replacing psycopg2 with something else. As I said previously: A quick Google search returns a starting point: https://wiki.postgresql.org/wiki/Python If you want to debug the current configuration, simplify the .spec buy removing unnecessary requirements and don't forget the |
I just noticed this is the "develop" branch of p4a |
Yes we got some recent runtime fixes in "develop" It might be worth giving a try @Bouchra994 change to |
alternatively you could use this pure-python package for to connect to your
postgres database: https://github.com/tlocke/pg8000
Am So., 28. Juni 2020 um 09:46 Uhr schrieb Andre Miras <
[email protected]>:
… Yes we got some recent runtime fixes in "develop"
- #2245 <#2245>
- #2246 <#2246>
It might be worth giving a try @Bouchra994 <https://github.com/Bouchra994>
change to p4a.branch = develop and do a clean buildozer android clean and
a rebuild to see
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#2240 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA4U63RIOHHYIXWDEKKWTZLRY37PFANCNFSM4OE6CXAA>
.
|
i fix the error by changing the p4a.branch =develop 06-28 15:26:12.014 26978 27082 I python : psycopg2.OperationalError: could not connect to server: Connection refused please have you any idea about that |
Is the database server on your PC where you developed the app? https://groups.google.com/g/kivy-users is more suited to general programming questions. |
👋 We use the issue tracker exclusively for bug reports and feature requests. However, this issue appears to be a support request. Please use our support channels to get help with the project. If you're having trouble installing or using python-for-android, maybe you could be interested in our quickstart guide. Let us know if this comment was made in error, and we'll be happy to reopen the issue. |
im working with psycopg2 to connect my app with posstgres data base it work good in laptop but when i try to deloy it crach in time of importing psycopg2
print("before psycopg2")
import psycopg2
print("after psycopg2")
Versions
Description
// REPLACE ME: i want to know why does that happen
Spec file:
--------- beginning of crash
--------- beginning of system
--------- beginning of main
06-22 18:48:14.474 9178 9396 I python : Initializing Python for Android
06-22 18:48:14.474 9178 9396 I python : Setting additional env vars from p4a_env_vars.txt
06-22 18:48:14.474 9178 9396 I python : Changing directory to the one provided by ANDROID_ARGUMENT
06-22 18:48:14.474 9178 9396 I python : /data/user/0/org.test.myapp/files/app
06-22 18:48:14.474 9178 9396 I python : Preparing to initialize python
06-22 18:48:14.474 9178 9396 I python : _python_bundle dir exists
06-22 18:48:14.474 9178 9396 I python : calculated paths to be...
06-22 18:48:14.474 9178 9396 I python : /data/user/0/org.test.myapp/files/app/_python_bundle/stdlib.zip:/data/user/0/org.test.myapp/files/app/_python_bundle/modules
06-22 18:48:14.475 9178 9396 I python : set wchar paths...
06-22 18:48:14.561 9178 9396 I python : Initialized python
06-22 18:48:14.561 9178 9396 I python : AND: Init threads
06-22 18:48:14.563 9178 9396 I python : testing python print redirection
06-22 18:48:14.564 9178 9396 I python : Android path ['.', '/data/user/0/org.test.myapp/files/app/_python_bundle/stdlib.zip', '/data/user/0/org.test.myapp/files/app/_python_bundle/modules', '/data/user/0/org.test.myapp/files/app/_python_bundle/site-packages']
06-22 18:48:14.565 9178 9396 I python : os.environ is environ({'PATH': '/sbin:/system/sbin:/system/bin:/system/xbin:/odm/bin:/vendor/bin:/vendor/xbin', 'DOWNLOAD_CACHE': '/data/cache', 'ANDROID_BOOTLOGO': '1', 'ANDROID_ROOT': '/system', 'ANDROID_ASSETS': '/system/app', 'ANDROID_DATA': '/data', 'ANDROID_STORAGE': '', 'EXTERNAL_STORAGE': '/sdcard', 'ASEC_MOUNTPOINT': '/mnt/asec', 'BOOTCLASSPATH': '/system/framework/core-oj.jar:/system/framework/core-libart.jar:/system/framework/conscrypt.jar:/system/framework/okhttp.jar:/system/framework/bouncycastle.jar:/system/framework/apache-xml.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/telephony-common.jar:/system/framework/voip-common.jar:/system/framework/ims-common.jar:/system/framework/android.hidl.base-V1.0-java.jar:/system/framework/android.hidl.manager-V1.0-java.jar:/system/framework/framework-oahl-backward-compatibility.jar:/system/framework/android.test.base.jar:/system/framework/featurelayer-widget.jar:/system/framework/hwEmui.jar:/system/framework/hwTelephony-common.jar:/system/framework/hwIms-common.jar:/system/framework/hwframework.jar:/system/framework/com.huawei.nfc.jar:/system/framework/org.ifaa.android.manager.jar:/system/framework/hwperf.jar:/system/framework/hwaps.jar:/system/framework/hwcustEmui.jar:/system/framework/hwcustframework.jar:/system/framework/hwcustTelephony-common.jar:/system/framework/servicehost.jar:/system/framework/hwIAwareAL.jar', 'SYSTEMSERVERCLASSPATH': '/system/framework/services.jar:/system/framework/ethernet-service.jar:/system/framework/wifi-service.jar:/system/framework/com.android.location.provider.jar:/system/framework/hwServices.jar:/system/framework/hwWifi-service.jar:/system/framework/hwcustServices.jar:/system/framework/hwcustwifi-service.jar', 'OEM_ROOT': '/product/hw_oem/JKM-L21', 'ODM_PRODUCT': '/odm/hw_odm/JKM-L21', 'CUST_POLICY_DIRS': '/system/emui/base:/system/emui/oversea:/system/emui/lite:/vendor/etc:/odm/etc:/product/etc:/odm/hw_odm/JKM-L21:/product/region_comm/oversea:/preas/oversea:/product/hw_oem/JKM-L21:/preload/JKM-L21/hw/meafnaf:/cust/global:/cust/hw/meafnaf:/product/special_cust/JKM-L21/hw/meafnaf', 'ANDROID_SOCKET_zygote_secondary': '18', 'ANDROID_ENTRYPOINT': 'main.pyc', 'ANDROID_ARGUMENT': '/data/user/0/org.test.myapp/files/app', 'ANDROID_APP_PATH': '/data/user/0/org.test.myapp/files/app', 'ANDROID_PRIVATE': '/data/user/0/org.test.myapp/files', 'ANDROID_UNPACK': '/data/user/0/org.test.myapp/files/app', 'PYTHONHOME': '/data/user/0/org.test.myapp/files/app', 'PYTHONPATH': '/data/user/0/org.test.myapp/files/app:/data/user/0/org.test.myapp/files/app/lib', 'PYTHONOPTIMIZE': '2', 'P4A_BOOTSTRAP': 'SDL2', 'PYTHON_NAME': 'python', 'P4A_IS_WINDOWED': 'True', 'P4A_ORIENTATION': 'portrait', 'P4A_NUMERIC_VERSION': 'None', 'P4A_MINSDK': '21', 'LC_CTYPE': 'C.UTF-8'})
06-22 18:48:14.565 9178 9396 I python : Android kivy bootstrap done. name is main
06-22 18:48:14.565 9178 9396 I python : AND: Ran string
06-22 18:48:14.565 9178 9396 I python : Run user program, change dir and execute entrypoint
06-22 18:48:14.565 9178 9396 I python : before psycopg2
06-22 18:48:14.568 9178 9396 I python : Traceback (most recent call last):
06-22 18:48:14.568 9178 9396 I python : File "/mnt/c/users/lenovo/desktop/login/.buildozer/android/app/main.py", line 4, in
06-22 18:48:14.568 9178 9396 I python : File "/mnt/c/users/lenovo/desktop/login/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/psycopg2/init.py", line 50, in
06-22 18:48:14.568 9178 9396 I python : ImportError: dlopen failed: cannot locate symbol "PQencryptPasswordConn" referenced by "/data/data/org.test.myapp/files/app/_python_bundle/site-packages/psycopg2/_psycopg.so"...
06-22 18:48:14.568 9178 9396 I python : Python for android ended.
The text was updated successfully, but these errors were encountered: