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 virtual environment which includes the Python version and
ipykernel
package,
run:conda create -n <your-env-name> python=<python-version> ipykernel
NOTE
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.