Setup
Home | Setup | Usage | Configuration | Rules | Development
How to setup rdflint.
Manual Setup
-
rdflint needs java runtime environment. If you do not have runtime, download and install JRE or JDK from follwing website.
Java SE - Downloads | Oracle Technology Network | Oracle
https://www.oracle.com/technetwork/java/javase/downloads/index.html -
Download rdflint from JitPack.
Put your browserhttps://jitpack.io/com/github/imas/rdflint/0.2.1/rdflint-0.2.1.jar
, and download jar file.
If you like wget, you can use following command.$ wget https://jitpack.io/com/github/imas/rdflint/0.2.1/rdflint-0.2.1.jar
-
Move to rdflint downloaded directory, and run rdflint with following command.
No error messages is OK.$ java -jar rdflint-0.2.1.jar
Setup to Visual Studio Code
-
rdflint needs java runtime environment. If you do not have runtime, download and install JRE or JDK from follwing website.
Java SE - Downloads | Oracle Technology Network | Oracle
https://www.oracle.com/technetwork/java/javase/downloads/index.html -
Set Java installed directory to enviroment variable
JAVA_HOME
.
Note. Java installed directory is usuallyC:\Program Files\Java\jdk-(version number)
. -
Start Visual Studio Code.
If you already started VSS, restart for activate environment variable. -
From Extensions menu(File->Preferences->Extensions),
search with keywordrdflint
etc, and selectRDF lanauage support via rdflint
SelectInstall
, and install extention. -
From Ctrl+Shift+P menu, select
rdflint interactive mode: SPARQL playground
and start rdflint with interactive mode.
Setup with homebrew - for macOS
-
Install homebrew from following website interaction, if you do not installed yet.
Homebrew
https://brew.sh/index_ja -
Install rdflint with following command.
$ brew tap imas/rdflint $ brew install rdflint
Note. If you use
takemikami/takemikami
(Before version 0.1.1), change formulaue repository with following step。$ brew untap takemikami/takemikami $ brew tap imas/rdflint
-
Run rdflint with following command.
No error messages is OK.$ rdflint
Note, In the case of install by Homebrew, replace java -jar rdflint-0.2.1.jar
to rdflint
in Usage.