在kivy/pythonforandroid中安装第三方模块时出错

2024-09-26 22:51:46 发布

您现在位置:Python中文网/ 问答频道 /正文

我去了分发.sh在python中输入android,然后输入这个命令/分发.sh-m“kivynmap”,其中nmap是python的第三方模块,但是我收到了这个错误。。。在

Call postbuild_python Call postbuild_sdl Call postbuild_pygame Call postbuild_pyjnius Call postbuild_android Call postbuild_kivy Run pymodules install We want to install: nmap Check if /usr/local/bin/virtualenv is present Check if a virtual environment already exists Installing virtualenv Running virtualenv with interpreter /usr/bin/python2.7 New python executable in venv/bin/python2.7 Also creating executable in venv/bin/python Installing setuptools, pip, wheel...done. Create a requirement file for pure-python modules Install pure-python modules via pip in venv /root/.buildozer/android/platform/python-for-android/build/venv/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning DEPRECATION: --download-cache has been deprecated and will be removed in the future. Pip now automatically uses and configures its cache. Collecting nmap (from -r requirements.txt (line 1)) /root/.buildozer/android/platform/python-for-android/build/venv/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning Could not find a version that satisfies the requirement nmap (from -r requirements.txt (line 1)) (from versions: ) No matching distribution found for nmap (from -r requirements.txt (line 1))

请找个人解决这个问题


Tags: pipandinfromsslforbinvenv
1条回答
网友
1楼 · 发布于 2024-09-26 22:51:46
Check if virtualenv is present
Tool virtualenv is missing

安装virtualenv。在

编辑:既然你编辑了你的问题:

^{pr2}$

pypi上没有名为nmap的模块(因此可以与pip一起安装)。如果你的模块不能以这种方式安装,你不能把它放在需求行。如果是这种情况,请将模块复制到您的app dir,它将包含在应用程序中。在

相关问题 更多 >

    热门问题