Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
## Setup Project
what has been done:
```
mkdir julia-proj-example
cd julia-proj-example/
```
in `julia`
```
]activate .
]add NotebookHelper
```
this generates a local `Project.toml`. You may want to add all other packages here.
## Init strictly local packages:
In the project dir run `julia --proj`
```
generate modules/MyLocalModule
develop modules/MyLocalModule
```
This generates a local package `modules/MyLocalModule` and through the `develop` makes it available for the project via `using MyLocalModule`.