温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Python 开发环境搭建(03):Linux 下 eclipse 安装

发布时间:2020-08-11 00:02:35 来源:ITPUB博客 阅读:130 作者:Ryan_Bai 栏目:编程语言

一、安装jdk

  1. 下载jdk

    1. 打开Oracle官网

      https://www.oracle.com/index.html

    2. 单击 Downloads

      Python 开发环境搭建(03):Linux 下 eclipse 安装

    3. 单击 Java

      Python 开发环境搭建(03):Linux 下 eclipse 安装

    4. 单击 Java SE

      Python 开发环境搭建(03):Linux 下 eclipse 安装

    5. 单击 Download

      Python 开发环境搭建(03):Linux 下 eclipse 安装

    6. 下载(http://download.oracle.com/otn-pub/java/jdk/11.0.2+9/f51449fcd52f4d52b93a989c5c56ed3c/jdk-11.0.2_linux-x64_bin.tar.gz)

      Python 开发环境搭建(03):Linux 下 eclipse 安装

  2. 解压jdk

    tar -zxvf jdk-11.0.2_linux-x64_bin.tar.gz

  3. 将jdk移到/opt下统一管理

    mv /jdk-11.0.2 /opt

  4. 配置环境变量

    export JAVA_HOME=/opt/jdk-11.0.2

    export PATH=$PATH:$HOME/bin:/opt/python3/bin:$JAVA_HOME/bin

二、安装eclipse

  1. 下载eclipse

    1. 登录官方网站

      http://download.eclipse.org/

    2. 下载包

      Python 开发环境搭建(03):Linux 下 eclipse 安装

    3. 下载Linux 64 bit版本

      Python 开发环境搭建(03):Linux 下 eclipse 安装

    4. Download(http://ftp.osuosl.org/pub/eclipse/oomph/epp/2018-12/R/eclipse-inst-linux64.tar.gz)

      Python 开发环境搭建(03):Linux 下 eclipse 安装

  2. 解压eclipse

    tar -zxvf eclipse-inst-linux64.tar.gz

  3. 安装eclipse 

    cd eclipse-installer

    ./eclipse-inst

  4. 配置桌面快捷方式 

    ln -s /opt/eclipse/eclipse ~/Desktop

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI