Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create a New Env from Existing Envs

We recommend our users to create a new environment from one of our existing powerai or wmlce enviornment.

Code Block
languagebash
titleCreate a New Env from Existing Env
conda create --name=<new_env_name>env> --clone=wmlce-v1.6.1-py3.6

The new conda environment will be located within $HOME/.conda/envs/<my_env>, then users can search and/or install python packages via conda


Code Block
languagebash
titleExample: Search for a New Package
conda search r-tensorflow
Code Block
languagebash
titleExample: Install a New Package
conda install r-tensorflow

Create Anaconda Environment from Scratch

...