手机版
你好,游客 登录 注册 搜索
背景:
阅读新闻

Ubuntu 10.10安装PyCharm1.5

[日期:2011-09-24] 来源:Linux社区  作者:WHH1991 [字体: ]

Linux pycharm.sh PYCHARM_JDK & JDK_HOME issue

if non PYCHARM_JDK nor JDK_HOME vairables are not set pycharm.sh will not launch and reports following error:

ERROR: cannot start PyCharm.
No JDK found to run PyCharm. Please validate either PYCHARM_JDK or JDK_HOME points to valid JDK installation

Changing following code in bin/pycharm.sh

if [ -z "$PYCHARM_JDK" ]; then  
  PYCHARM_JDK
=$JDK_HOME  
 
if [ -z "$PYCHARM_JDK" ]; then  
      echo ERROR
: cannot start PyCharm.  
      echo
No JDK found to run PyCharm. Please validate either PYCHARM_JDK or JDK_HOME points to valid JDK installation  
  fi  
fi


to:

if [ -z "$PYCHARM_JDK" ]; then 
  PYCHARM_JDK
=$JDK_HOME 
 
if [ -z "$PYCHARM_JDK" ]; then 
     
if [ -f "/usr/bin/Java" ]; then 
      PYCHARM_JDK
=/usr 
     
else 
        echo ERROR
: cannot start PyCharm. 
        echo
No JDK found to run PyCharm. Please validate either PYCHARM_JDK or JDK_HOME points to valid JDK installation 
    fi 
  fi 
fi


could lead to fewer installation problems, the same solution is used in PhpStorm
linux
本文评论   查看全部评论 (0)
表情: 表情 姓名: 字数

       

评论声明
  • 尊重网上道德,遵守中华人民共和国的各项有关法律法规
  • 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
  • 本站管理人员有权保留或删除其管辖留言中的任意内容
  • 本站有权在网站内转载或引用您的评论
  • 参与本评论即表明您已经阅读并接受上述条款