# Python

# Create Python environment

Below is an example on how you create a Conda environment with Python and IPython kernel from your workbench terminal::

# -- Principal example 
mamba create -n <name> 'python==3.12.*' 'ipykernel' 'pip' 'ipywidgets>=8.0.2,<9.0.0'

# -- Demo example
mamba create -n py312env 'python~=3.12.*' 'ipykernel' 'pip' 'ipywidgets>=8.0.2,<9.0.0'
Last Updated: 5/8/2025