溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python安裝py4j的方法

發(fā)布時間:2020-07-31 09:23:14 來源:億速云 閱讀:778 作者:清晨 欄目:編程語言

小編給大家分享一下python安裝py4j的方法,相信大部分人都還不怎么了解,因此分享這邊文章給大家學(xué)習(xí),希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去學(xué)習(xí)方法吧!

Mac安裝:

pip 安裝

pip install py4j
py4j.jar包路徑:/usr/share/py4j/py4j0.x.jar or /usr/local/share/py4j/py4j0.x.jar

conda 安裝(或者使用Anaconda-Navigator安裝)

conda install py4j
py4j.jar包路徑:/anaconda3/share/py4j/py4j0.x.jar

使用:

1、java代碼

// 需要導(dǎo)入py4j.jar包
import py4j.GatewayServer;
import java.util.Random;
public class EntryPoint {
    private static final Random random = new Random();
    public int randInt() {
        return random.nextInt();
    }
    public static void main(String[] args) {
        EntryPoint app = new EntryPoint();
        // py4j服務(wù)
        GatewayServer gatewayServer = new GatewayServer(app);
        gatewayServer.start();
        System.out.println("Gateway Server Started");
    }
}

2、Python代碼

from py4j.java_gateway import JavaGateway
# 初始化
gateway = JavaGateway()
def main():
    # 調(diào)用Java-EntryPoint中的randInt函數(shù)
    a = gateway.entry_point.randInt()
    print(a)
if __name__ == '__main__':
    main()

注意:

1.導(dǎo)入py4j.jar包

2.運(yùn)行Java代碼

3.運(yùn)行Python代碼(必須在2之后)

以上是python安裝py4j的方法的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI