Refactored structure // Adapted structure from python wiki authored by thiuda's avatar thiuda
blank ## Package Installation
Install any packages you want to use. For our example, switch to the package manager with `\]` and run:
copied from prev page: ```julia
- Install any packages you want to use. For our example, switch to the package manager with "\]" and run:
```
add LowRankModels add LowRankModels
add DecisionTree add DecisionTree
``` ```
- Congratulations! As an example, run:
``` ## Quickstart
Congratulations! As an example, run:
```julia
using ConML using ConML
using LowRankModels # some algorithms for Construction and Reconstruction, use what you want using LowRankModels # some algorithms for Construction and Reconstruction, use what you want
using DecisionTree using DecisionTree
...@@ -52,4 +51,6 @@ copied from prev page: ...@@ -52,4 +51,6 @@ copied from prev page:
learn(block) learn(block)
``` ```
- To update the packages, navigate to the project folder and do a git pull. Afterwards, go to the julia package manager ("\]") and run "update".
\ No newline at end of file ## Update
Navigate to the project folder and run `git pull`. Afterwards, go to the julia package manager (`\]`) and run `update`.
\ No newline at end of file