### Install Parrot.jl via Julia Pkg REPL Source: https://github.com/elijahmathews/parrot.jl/blob/primary/docs/src/index.md Instructions to install the Parrot.jl package by adding its GitHub repository URL using the Julia Pkg REPL. This method is suitable for direct package installation from a URL. ```Julia (@v1.6) pkg> add https://github.com/elijahmathews/Parrot.jl.git ``` -------------------------------- ### Install Parrot.jl via Julia REPL using Pkg.add Source: https://github.com/elijahmathews/parrot.jl/blob/primary/docs/src/index.md Alternative method to install the Parrot.jl package by importing the Pkg module and adding the repository URL directly in the standard Julia REPL. This provides a programmatic way to install the package. ```Julia julia> import Pkg; Pkg.add(url="https://github.com/elijahmathews/Parrot.jl.git") ``` -------------------------------- ### Add Parrot.jl Package Source: https://github.com/elijahmathews/parrot.jl/blob/primary/README.md Installs the Parrot.jl package into your Julia environment using the built-in package manager. This command is executed within the Julia REPL's Pkg mode, which is accessed by typing ']' at the Julia prompt. ```Julia ] add https://github.com/elijahmathews/Parrot.jl ``` -------------------------------- ### Parrot.jl API Documentation References Source: https://github.com/elijahmathews/parrot.jl/blob/primary/docs/src/index.md References to key functions and types within the Parrot.jl library, indicating which elements are intended for public documentation. This section lists the main components of the API. ```APIDOC Alsing TransformPCA ReconstructPCA Normalize Denormalize ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.