-
Notifications
You must be signed in to change notification settings - Fork 11
Desktop Install
Oliver edited this page Apr 21, 2021
·
8 revisions
$> sudo apt install python3 python3-pip openjdk-8-jre
$> pip3 install setuptools wheel
You will need to download and install Java JDK-8 (v9 or higher will not work with Spark)
$> brew install python
$> pip3 install setuptools wheel
$> sudo port install py34-pip
$> pip3 install setuptools wheel
Enable Windows Subsystem for Linux
$> sudo apt install python3 openjdk-8-jre-headless
$> ln -s /usr/bin/python3 /usr/local/bin/python
$> curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$> python get-pip.py
Using coursier
$> coursier install vizier --channel https://vizierdb.info/coursier.json
You may need to add your user bin directory (typically ~/.local/bin
) to your PATH
environment variable
$> wget https://maven.mimirdb.info/info/vizierdb/vizier
$> chmod +x vizier
$> mv vizier [your favourite bin directory]
$> vizier
$> coursier uninstall vizier
$> rm -r ~/.cache/coursier
Spark, which we use for most data processing, does not currently support Java JRE 9 or later. We plan to add support for Java 11 as soon as Spark does.
We're working on it.
Spark does not support Java JRE 9 or later. You need Java JRE 8 installed (note that you can have multiple JREs installed at the same time). You can download Java JRE 8 from here.