# Add conda-forge and pytorch channels
jnc workspace channel add conda-forge pytorch
# List configured channels
jnc workspace channel list
# Remove a channel
jnc workspace channel remove pytorch
# Add target platforms
jnc workspace platform add linux-aarch64
# List target platforms
jnc workspace platform list
# Set the workspace description
jnc workspace description set "My data science workspace"
# Set the workspace version
jnc workspace version set 1.0.0
# Bump the patch version (1.0.0 -> 1.0.1)
jnc workspace version patch
# Add a new environment with features
jnc workspace environment add test
# List environments
jnc workspace environment list
# Remove an environment
jnc workspace environment remove test
# List features
jnc workspace feature list
# Export as a conda environment file
jnc workspace export conda-environment
# Export as a conda explicit spec
jnc workspace export conda-explicit-spec
# Get the workspace name
jnc workspace name get
# Set the workspace name
jnc workspace name set my-project
# Add a system requirement
jnc workspace system-requirements add "cuda>=12.0"
# List system requirements
jnc workspace system-requirements list
# Use the project alias
jnc project channel list