https://github.com/heardacat/sk2java-example
https://github.com/heardacat/sk2java-example
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/heardacat/sk2java-example
- Owner: HeardACat
- Created: 2017-10-04T08:53:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-05T19:29:50.000Z (over 7 years ago)
- Last Synced: 2025-03-26T16:40:21.373Z (3 months ago)
- Language: Jupyter Notebook
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Installing the environment:
```sh
conda env create -f environment.yml
```Update environment configuration
```sh
conda env export > environment.yml
```Force update of an environment
```sh
conda env update -f environment.yml
```## Creating a Jar
```
javac Brain.java
jar cf Brain.jar Brain.class# usage:
java -jar Brain.jar
```