> ## Documentation Index
> Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Projects

export const Danger = ({children}) => {
  return <div class="callout my-4 px-5 py-4 overflow-hidden rounded-2xl flex gap-3 border danger-admonition dark:danger-admonition" data-callout-type="danger">
      <div class="mt-0.5 w-4">
        <svg width="14" height="14" viewBox="0 0 14 14" fill="rgb(239, 68, 68)" xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 text-sky-500" aria-label="Danger">
          <path fill-rule="evenodd" clip-rule="evenodd" d="M7 1.3C10.14 1.3 12.7 3.86 12.7 7C12.7 10.14 10.14 12.7 7 12.7C5.48908 12.6974 4.0408 12.096 2.97241 11.0276C1.90403 9.9592 1.30264 8.51092 1.3 7C1.3 3.86 3.86 1.3 7 1.3ZM7 0C3.14 0 0 3.14 0 7C0 10.86 3.14 14 7 14C10.86 14 14 10.86 14 7C14 3.14 10.86 0 7 0ZM8 3H6V8H8V3ZM8 9H6V11H8V9Z"></path>
        </svg>
      </div>
      <div class="text-sm prose min-w-0 w-full">
        {children}
      </div>
    </div>;
};

In Data Science & AI Workbench, a project is a structured environment for developing, managing, and deploying data science and machine learning applications. This includes relevant packages, channels, scripts, notebooks, files, environment variables, services and commands, and a *core configuration file* named `anaconda-project.yml`. For more information, see [Project configurations](./project-config).

Project components are archived into a `.tar.bz2`, `.tar.gz`, or `.zip` file for portability purposes, allowing you to store the project and share it with others.

## Creating a new project

1. From the <Icon icon="file-code" iconType="light" /> **Projects** page click **Create +**, then select *New Project*.
2. Enter a name for your project.
3. Select an environment for your project.
4. Select a resource profile for your project.
5. If necessary, add any users or groups as collaborators.
6. Click **Create**.

## Uploading an existing project

1. From the <Icon icon="file-code" iconType="light" /> **Projects** page click **Create +**, then select *Upload Project*.
2. Click **Browse** and upload your project archive file to Workbench.
3. Enter a name for your project.
4. If necessary, add any users or groups as collaborators.
5. Click **Upload**.

## Using sample projects

To access the sample project gallery, navigate to the <Icon icon="file-code" iconType="light" /> **Projects** page, then click **Sample Projects**. Click <Icon icon="clone" iconType="light" /> **Add to your projects** on any sample project to copy it to the <Icon icon="file-code" iconType="light" /> **Projects** page.

Anaconda provides you with a gallery of sample projects that include:

* Several base Anaconda Distribution for Python environments
* Minimal Python environments
* Simplified Jupyter Notebooks for Matplotlib and HvPlot
* Dashboards for the Gapminder dataset, oil and gas, NYC taxi, and attractor equations
* TensorFlow apps for Flask, Tornado, and MINST trained data
* And tutorial projects for:

  * Using Intake to distribute and ingest data
  * Database access using SQLAlchemy, Pandas, and Dask
  * Visualizations with HoloViz.org tools
  * Building time-series forecasting models using statsmodels

These projects are intended to aid you with your own projects by demonstrating how to do a variety of things in Workbench.

<Tip>
  Use the **Category** dropdown to filter the displayed sample projects.

  <Frame>
    <img src="https://mintcdn.com/anaconda-29683c67/SgtHPGS_3WUV3NOk/images/sample_project_categories.gif?s=2818aea68a3fdbd89ca011efaf3b0fab" alt="" width="1274" height="718" data-path="images/sample_project_categories.gif" />
  </Frame>
</Tip>

## Deleting a project

1. From the <Icon icon="file-code" iconType="light" /> **Projects** page open the project you want to delete.
2. Click **Delete** at the bottom of the project settings page.
3. Click **Delete** again to confirm that you want to delete the project and end any active sessions and deployments from the project.

<Danger>
  Deleting a project is irreversible. Project owners and administrators are the
  only users that can delete shared projects.
</Danger>
