# Replicating the Environment

If you want to replicate the JupyterHub environment elsewhere. We provide Conda and Julia environment files with the packages installed in the class' image.

The files are available for download from this [Google Storage Bucket](https://console.cloud.google.com/storage/browser/jupyterhub-environment-files).

## To recreate the Conda environment

1. Download the `environment.nb.yml` file
2. Create the environemtn using the file.

   ```sh
   conda env create --name my_env -f environment.nb.yml
   source activate my_env
   ```

## To recreate Julia enviroments

1. Download the `Project.toml` file and add it to your project's folder and rename it to `Project.toml`
2. `cd` into your folder
3. From the Julia REPL:

```jl
]activate .
Activating environment at `~/your/project/Project.toml`
pkg> instantiate
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ccv.brown.edu/archive/jupyterhub/reproducibility/replicating.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
