2

我正在尝试在我的应用程序中运行一些 python 代码。(在安卓工作室)。但是,我不断收到此错误:“没有为模型配置 python 解释器”,因此我什至无法运行最简单的代码,例如:print("hello").

一些细节:
在我的主包中,我打开了一个新的python包,所以我自动有init.py文件,我尝试在那里运行:print(“hello”),还尝试在同一目录中打开另一个python文件并将我的代码在那里,但它不会运行。提供了gurdle.build-s。

ps:我在网上搜索了这个问题,但是没有人谈论android studio,并且每个人都在谈论选择另一个SDK。但是,我的“项目结构”中没有 python SDK,当我尝试搜索一个下载时,我在“SDK 管理器”中找不到任何内容。

细节:

___________________________________________________
apply plugin: 'com.android.application'
apply plugin: "com.chaquo.python"

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.example.eyal.doctorsapp"
        minSdkVersion 19
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        ndk {
            abiFilters "x86", "armeabi-v7a"
        }
        python {
            version "2.7.10"
        }
    }   
___________________________________________________________________
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
        maven{url "https://chaquo.com/maven"}
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath "com.chaquo.python:gradle:0.5.0"
    }
}
4

0 回答 0