https://github.com/bcbi/predictmdextra.jl
https://github.com/bcbi/predictmdextra.jl
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bcbi/predictmdextra.jl
- Owner: bcbi
- License: mit
- Created: 2018-08-12T18:53:36.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-04-01T06:29:29.000Z (over 5 years ago)
- Last Synced: 2025-02-02T01:27:30.194Z (over 1 year ago)
- Language: Julia
- Homepage: https://predictmd.net
- Size: 581 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# PredictMDExtra
PredictMDExtra is a meta-package that installs all of the Julia dependencies
of [PredictMD](https://predictmd.net) (but not PredictMD itself).
Installing PredictMDExtra does not install PredictMD. If you would like a
convenient way of installing PredictMD and all of its Julia dependencies,
see [PredictMDFull](https://github.com/bcbi/PredictMDFull.jl).
| Table of Contents |
| ----------------- |
| [Installation](#installation) |
## Installation
PredictMDExtra is registered in the Julia General registry. Therefore, to
install PredictMDExtra, simply open Julia and run the following four lines:
```julia
import Pkg
Pkg.activate("PredictMDEnvironment"; shared = true)
Pkg.add("PredictMDExtra")
import PredictMDExtra
```
That being said, PredictMDExtra is not very useful by itself. Instead, I
recommend that you install PredictMDFull, which includes both PredictMD and
PredictMDExtra. To install PredictMDFull, simply open Julia and run the
following four lines:
```julia
import Pkg
Pkg.activate("PredictMDEnvironment"; shared = true)
Pkg.add("PredictMDFull")
import PredictMDFull
```