https://github.com/davzoku/get-started-julia
Getting Started with Julia
https://github.com/davzoku/get-started-julia
data-science julia tutorial
Last synced: 9 months ago
JSON representation
Getting Started with Julia
- Host: GitHub
- URL: https://github.com/davzoku/get-started-julia
- Owner: davzoku
- Created: 2023-02-05T10:54:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-05T18:09:48.000Z (about 3 years ago)
- Last Synced: 2025-04-30T22:54:49.031Z (11 months ago)
- Topics: data-science, julia, tutorial
- Language: Jupyter Notebook
- Homepage:
- Size: 143 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Get Started with Julia
A gentle introduction to Julia with simple data science related examples.
## Tips on Starting a New Julia Project
_Reference: [Julia Workshop - 1: Getting started with Julia](https://crsl4.github.io/julia-workshop/session1-get-started.html#creating-a-new-project-environment)_
1. Navigate to your project folder in the terminal
2. activate the julia console by type `julia`
3. type `]` to change to `pkg > `
4. type `activate .` creates `Project.toml, Manifest.toml` files. These files should not be updated by hand.
5. add packages as required using `add `
## Working on existing project
Follow step 1 to 3 above after cloning the repo.
then type the following:
```
(your-project) pkg> instantiate
(your-project) pkg> update
```