https://github.com/emmt/emmtregistry
Registry of my Julia public and private packages
https://github.com/emmt/emmtregistry
Last synced: 3 months ago
JSON representation
Registry of my Julia public and private packages
- Host: GitHub
- URL: https://github.com/emmt/emmtregistry
- Owner: emmt
- Created: 2021-07-05T10:31:58.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-11-03T11:57:05.000Z (7 months ago)
- Last Synced: 2025-11-03T13:21:14.748Z (7 months ago)
- Homepage:
- Size: 188 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Registry of my Julia public and private packages
This repository hosts a registry of my Julia packages.
## Installation
Using this registry depends on Julia version.
### Julia versions ≥ 1.1
To add this registry in Julia (version ≥ 1.1, see below for older versions):
```julia
using Pkg
pkg"registry add https://github.com/emmt/EmmtRegistry"
```
If you execute these commands in a fresh Julia installation, you may also want
to add Julia's General Registry with all official packages of Julia. This can
be done by:
```julia
using Pkg
pkg"registry add General"
```
In a script (e.g., for [CI
testing](https://en.wikipedia.org/wiki/Continuous_integration)):
```julia
using Pkg
Pkg.Registry.add("General")
Pkg.Registry.add(RegistrySpec(url = "https://github.com/emmt/EmmtRegistry"))
```
### Julia versions ≤ 1.0
Move into directory `~/.julia/registries/` and clone this registry:
```sh
cd ~/.julia/registries/
git clone https://github.com/emmt/EmmtRegistry
```
also make sure that you have the `General` (or equivalent) registry, otherwise:
```sh
cd ~/.julia/registries/
git clone https://github.com/JuliaRegistries/General.git
```