Skip to content

Commit

Permalink
Update Corese download links
Browse files Browse the repository at this point in the history
  • Loading branch information
remiceres committed Mar 13, 2024
1 parent fc3c3e5 commit 599babb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ docker run --name my-corese \
- Alternatively, download [Corese-server jar file](https://project.inria.fr/corese/jar/).

```sh
wget "files.inria.fr/corese/distrib/corese-server-4.5.0.jar"
wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-server-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-server-4.5.0.jar"
```

Expand All @@ -94,7 +94,7 @@ java -jar "-Dfile.encoding=UTF8" "corese-server-4.5.0.jar"
- Or download [Corese-gui jar file](https://project.inria.fr/corese/jar/).

```sh
wget "files.inria.fr/corese/distrib/corese-gui-4.5.0.jar"
wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-gui-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-gui-4.5.0.jar"
```

Expand All @@ -110,7 +110,7 @@ java -jar "-Dfile.encoding=UTF8" "corese-gui-4.5.0.jar"
- Or download [Corese-command jar file](https://project.inria.fr/corese/jar/).

```sh
wget "files.inria.fr/corese/distrib/corese-command-4.5.0.jar"
wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-command-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-command-4.5.0.jar"
```

Expand All @@ -135,7 +135,7 @@ curl -sSL https://files.inria.fr/corese/distrib/script/uninstall-corese-command.
- Download [Corese-python jar file](https://project.inria.fr/corese/jar/).

```sh
wget "files.inria.fr/corese/distrib/corese-library-python-4.5.0.jar"
wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-library-python-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-library-python-4.5.0.jar"
```

Expand Down
2 changes: 1 addition & 1 deletion corese-server/build-docker/corese/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV CORESE="/usr/local/corese"
RUN mkdir -p $CORESE
WORKDIR $CORESE

RUN wget http://files.inria.fr/corese/distrib/corese-server-4.5.0.jar
RUN wget https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-server-4.5.0.jar

COPY log4j2.xml $CORESE/log4j2.xml
COPY corese-default-profile.ttl $CORESE/corese-default-profile.ttl
Expand Down
2 changes: 1 addition & 1 deletion docs/corese-python/Corese-library with Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

1. Install java and python
2. Install python dependencies `pip install --user py4j`
3. Download [corese-library-python-4.5.0.jar](http://files.inria.fr/corese/distrib/corese-library-python-4.5.0.jar)
3. Download [corese-library-python-4.5.0.jar](https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-library-python-4.5.0.jar)
4. Place in the same directory `corese-library-python-4.5.0.jar` and your code `myCode.py`
5. Run with `python myCode.py`

Expand Down

0 comments on commit 599babb

Please sign in to comment.