{% extends "base.html" %} {% block title %}Conda Environments - {{ t.app_title }}{% endblock %} {% block content %}

Conda Environments

Manage conda environments for script execution

{% if conda_available %}
{% endif %}
{% if not conda_available %} {% else %}
Available Environments {{ environments|length }}
{% if environments %}
{% for env in environments %} {% endfor %}
ID Environment Name Python Version Path Status Last Verified
{{ env.id }} {{ env.name }} {% if env.name == 'base' %} Default {% endif %} {% if env.python_version %} {{ env.python_version }} {% else %} Unknown {% endif %} {{ env.path }} {% if env.is_available %} Available {% else %} Unavailable {% endif %} {% if env.last_verified %} {{ env.last_verified.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %}
{% else %}
No environments found

Click "Refresh Environments" to scan for available conda environments.

{% endif %}
Environment Assignment
How to assign environments to script groups:
  1. Environments are assigned at the script group level
  2. Each script group can use a different conda environment
  3. If no environment is assigned, the 'base' environment is used
  4. Scripts automatically run in their assigned environment
Environment requirements:
  • Python 3.7+ is recommended
  • Required packages should be installed in each environment
  • Environments must be accessible from the current user
  • Environment paths should not contain spaces
{% endif %}
{% endblock %}