Creating the Conda Environment
Describes how to create a conda
environment in HPE Ezmeral Unified Analytics Software.
You can use conda
package management system to create a new virtual
environment.
To create a conda environment,
run:
conda create --prefix ~/.conda/envs/kf-users-env --clone base -c forge --override-channels
To create a conda environment, you must use a notebook with at least 3 CPU and 3 Gi of
memory. For example, the following command creates a new environment named
py27
, which includes Python version 2.7 and the ipykernel
package.conda create -n py27 python=2.7 ipykernel
You can also create a
custom Python kernel using the %createKernel
magic command. For details, see
Notebook Magic Functions.