Return to site

Why Cant I Download And Install Java 8 On Mac Sierra

broken image


I want to do some programming with the latest JavaFX, which requires Java 8. I'm using IntelliJ 13 CE and Mac OS X 9 Mavericks. I ran Oracle's Java 8 installer, and the files look like they ended up at

  1. Why Cant I Download And Install Java 8 On Mac Sierra Mac
  2. Why Cant I Download And Install Java 8 On Mac Sierra 10.12
  3. Why Cant I Download And Install Java 8 On Mac Sierra 10.13

Users of Lion Mac OS X 10.7.1 and 10.7.2 should upgrade to 10.7.3 or later versions, so you can get the latest Java version from Oracle. Why is Oracle Java available only for Mac OS X 10.7.3 and above? The Java Runtime depends on the availability of an Application programming interface (API). Some of the API were added in Mac OS X 10.7.3. Download the latest Pixelmon Reforged Mod 8.1.2 for Minecraft 1.12.2. To play Pixelmon you need a bought copy of Minecraft Java Edition, if you already have a Minecraft account you can choose your prefferred type of installation down here.

but previous versions are at

Not sure why the latest installer puts this in /Library instead of /System/Library (nor what the difference is). But /usr/libexec/java_home doesn't find 1.8, so all the posts I've found on how to set your current java version don't work. I've tried adding a symbolic link to make it look like 1.8 is in the /System/Library.. path, but it doesn't help. /usr/libexec/java_home -V still only lists the old java 1.6.

Ironically, the 'Java' control panel under System Preferences shows only java 1.8!

Why doesn't Oracle's installer put it where it really goes? And how can I work around this problem?

Answers:

Don't rely on Oracle to install Java properly on your Mac.

Use Homebrew:

If you want to manage multiple versions of Java on your Mac, consider using jenv.

Answers:

For El Capitan and Sierra

Install brew:

then update and install Java:

Answers:

An option that I am starting to really like for running applications on my local computer is to use Docker. You can simply run your application within the official JDK container – meaning that you don't have to worry about getting everything set up on your local machine (or worry about running multiple different versions of the JDK for different apps etc)

Although this might not help you with your current installation issues, it is a solution which means you can side-step the minefield of issues related with trying to get Java running correctly on your dev machine!

The benefits are:

  1. No need to set up any version of Java on your local machine (you'll just run Java within a container which you pull from Docker Hub)
  2. Very easy to switch to different versions of Java by simply changing the tag on the container.
  3. Project dependencies are installed within the container – so if you mess up your config you can simply nuke the container and start again.

A very simple example:

Create a Dockerfile:

  • Here we are specifying the Java container running version 8 of the SDK (java:8 – to use Java 7, you could just specify: java:7)
  • We are mapping the local directory with the directory: /usr/src/myapp inside the container

Create a docker-compose.yml file:

Why Cant I Download And Install Java 8 On Mac Sierra Mac

Now, assume we have this Java file:

HelloWorld.java

So we have the following file structure:

You can do various Java things like:

compile:

  • You should note that the HelloWorld.class shows up in your current directory (this is cause we've mapped the current directory to the location inside the container where our code exists

run:

  • Note: the first time you run this it will fetch the image etc. This will take a while – it only happens the first time
  • docker-compose run – runs a command from within the container
  • -rm tells docker to remove the container once the command is finished running
  • java is the name of the service/container (from our docker-compose file) against which this command will run
  • the rest of the line is the command to run inside the container.

This is quite a cool way of dealing with running different versions of Java for different apps without making a complete mess of your local setup :).

Here is a slightly more complex example which has Maven and a simple Spring app

Disclaimer:

  • I haven't really tried this within an IDE like IntelliJ – so not entirely sure how that aspect of things would work. Though it looks like docker support is coming
  • Here is a significantly more complex example running Microservices with Spring Boot, Zuul and Docker
Answers:

I just did this on my MBP, and had to use

in order to get java8 to install.

Answers:

I have applications that use both Java 7 and 8 and have to go back and forth all the time.

Cant

I use this script written by Johan:

You can now set it at startup or call the script afterwards.
Install the JDK for Mac.

Java 7

Java 8

Answers:

I'm having the same problem to solve, because I need to install JDK8 to run Android SDK Manager (because it seems that don't work well with JDK9).
However, I tell you how I solve all problems on a Mac (Sierra).

First, you need brew with cask and jenv.

  1. You can find an useful guide here,Homebrew Cask Installation Guide.
    Remember to tap ‘caskroom/versions' running in the terminal:
    brew tap caskroom/versions
  2. After that, install jenv with:
    brew install jenv
  3. Install whatever version you want with cask
    brew cask install java8 (or java7 or java if you want to install the latest version, jdk9)
  4. The last step is to configure which version to run (and let jenv to manage your JAVA_HOME)
    jenv versions to list all versions installed on your machine and then activate the one you want with jenv global [JDK_NAME_OF_LIST]

You could find other useful informations here on this Github Gist brew-java-and-jenv.md, on this blog Install multiple JDK on a Mac and on Jenv Website

Answers:

Why Cant I Download And Install Java 8 On Mac Sierra 10.12

Questions:

Easiest way –

P.S – What is brew-cask ? Homebrew-Cask extends Homebrew , and solves the hassle of executing an extra command – 'To install, drag this icon…' after installing a Application using Homebrew.

Answers:

Below steps worked for me.

1) Uninstall all jdks Free download word program for macbook pro.

In the Terminal window Copy and Paste the command below:

2) Install APPLE jdk.

3) Download latest JDK from Oracle and install it , for me it was JDK 1.82

Thats all it will work like a charm.

Answers:

I also had the same problem. But after little hit and trial, I was able to resolve the issue.

Try removing 1.6 sdk by sudo rm and restart your mac.

Download again the .dmg file. Chances are that the .dmg installer you downloaded, might be corrupt. Install again.

Run following command after installation. It gives path for jdk 8.
/usr/libexec/java_home -v 1.8

Also you can run and see jdk 8 folder. The files may be hidden.
ls -al /Library/Java/JavaVirtualMachines/

Why Cant I Download And Install Java 8 On Mac Sierra 10.13

Tags: java





broken image