解决Chaquopy在AS中pip安装过慢的问题

一开始没有指定其他镜像源:

python {
     
    // 指定python路径
    buildPython "F:/Anaconda3/python.exe"
    pip {
     
        install "numpy"
        install "pandas"
    }
}

然后下载时我们发现:
解决Chaquopy在AS中pip安装过慢的问题_第1张图片
默认扫描的是:
https://pypi.org/simple和https://chaquo.com/pypi-7.0,导致速度很慢。
解决方案:使用其他镜像源

python {
     
    // 指定python路径
    buildPython "F:/Anaconda3/python.exe"
    pip {
     
        options "--index-url", "https://pypi.tuna.tsinghua.edu.cn/simple/"
        options "--extra-index-url", "http://pypi.mirrors.ustc.edu.cn/simple/"
        install "numpy"
        install "pandas"
    }
}

解决Chaquopy在AS中pip安装过慢的问题_第2张图片

你可能感兴趣的:(Chaquopy,Android,Chaquopy,AS,pip)