{% extends "base.html" %} {% block title %}Create Environment - PyRunner{% endblock %} {% block content %}
{% include "cpanel/_sidebar.html" %}

Create New Environment

Create an isolated Python virtual environment

{% csrf_token %}
{{ form.name }} {% if form.name.errors %}

{{ form.name.errors.0 }}

{% endif %}
{{ form.description }} {% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}
{{ form.python_path }} {% if form.python_path.help_text %}

{{ form.python_path.help_text }}

{% endif %} {% if form.python_path.errors %}

{{ form.python_path.errors.0 }}

{% endif %}

What happens when you create an environment?

  • A new Python virtual environment will be created
  • The environment will be isolated from other environments
  • You can install packages specific to this environment
Cancel
{% endblock %}