我将使用python开发一些功能,我需要设置pycharm,但它依赖于某些依赖项,如oracle的开放JDK。 如何设置这两个。
答案 0 :(得分:3)
从Oracle站点下载软件包后,将其解压缩并将其内容复制到例如/usr/lib/jvm/jdk1.8.0_51/
。
然后,键入以下命令:
sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/jdk1.8.0_51/bin/java" 1
sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/lib/jvm/jdk1.8.0_51/bin/javac" 1
sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/lib/jvm/jdk1.8.0_51/bin/javaws" 1
最后:
sudo update-alternatives --config java
并选择Oracle Java安装的编号。
答案 1 :(得分:1)
请确保您拥有Oracle JRE 1.6+或OpenJDK 1.7+。 为确保这一点,请在系统终端中检查$ java -version。
如果您已经拥有合适的JRE,那么距离完成安装仅需几分钟。
如果没有,请按照说明安装OpenJDK:
http://openjdk.java.net/install/
或Oracle JRE:
http://docs.oracle.com/javase/7/docs/webnotes/install/linux/linux-jre.html
下载的PyCharm存档名称如下所示:
pycharm校 - * tar.gz的
请按照以下步骤操作:
1. Copy the pycharm-educational-*.tar.gz to the desired installation location, preferably new empty directory. Make sure you have read-write permissions for that directory.
2. Unpack pycharm-educational-*.tar.gz using the following command:
3. tar xfz pycharm-educational-*.tar.gz
4. Remove pycharm-educational-*.tar.gz to save disk space (optional)
5. Run pycharm.sh from the bin subdirectory
就是这样!