Supported Conda Interpreter Tasks

You can learn the different tasks that are supported by the Conda interpreter in Graph Studio.

The following table describes the supported conda commands and the users authorized to perform these tasks:

Task Command Authorized Users
Create a new Conda environment using a specific Python version create -n <env_name> python==<python_version>
Create a Conda Environment by copying the default basegraph environment copy-local-env -n <env_name>
  • ADMIN
Install an external package from public Conda channel in a Conda environment install -n <env_name> <package_name>
  • ADMIN
Uninstall a specific package from a Conda environment uninstall -n <env_name> <package_name>
  • ADMIN
Upload a Conda environment to internal storage upload <env_name> --description '<write_description>' -t <tag_name> <tag_value>
  • ADMIN
Get information about the Conda installation info
List the packages installed in the active environment list
  • ADMIN
  • Graph User
Get specific command-line help <conda_command> --help
  • ADMIN
  • Graph User
Download and unpack a specific Conda environment from internal storage download <env_name>
  • ADMIN
  • Graph User
List all the uploaded Conda environments list-saved-envs
  • ADMIN
  • Graph User
List all the available Conda environments env list
  • ADMIN
  • Graph User
List the local Conda environments created by the user list-local-envs
  • ADMIN
  • Graph User
Activate a Conda environment activate <env_name>
  • ADMIN
  • Graph User
Deactivate a Conda environment deactivate
  • ADMIN
  • Graph User
Remove a Conda environment locally env remove -n <env_name>
  • ADMIN
  • Graph User
Delete a persisting Conda environment delete <env_name>
  • ADMIN

Footnote 1 ADMIN user gets created by default in Autonomous Database.

Footnote 2 See Create a Graph User.