4.11.2 Conda Interpreter Commands
This table lists the commands for the Conda interpreter.
Conda Interpreter Commands
Table 4-1 Conda Interpreter Commands
Tasks | Commands | Role |
---|---|---|
Create a Conda environment. | create -n <env_name> <python_version> |
|
Remove a list of packages from a specified conda environment. It is also an alias for conda uninstall .
|
remove -n <env_name> --all Note: The Conda environment is deleted from the user session. |
|
List user-created local environment. | env list |
|
Remove user-created local environment. | env remove -n <env_name> |
|
List all packages and versions installed in active environment. | list |
|
Activate a user-created local environment. | activate -n <env_name> |
|
Deactivate the current environment. | deactivate |
|
Install an external package from a public Conda channel. | install -n <env_name> <package_name> |
|
Uninstall a specific package from a Conda environment. It is also an alias for remove .
|
uninstall -n <env_name> <package_name> |
|
Display information about current conda install. | info |
|
View the command line help. | COMMANDNAME --help |
|
Upload a Conda environment to object storage.
Note: This is an Autonomous Database specific command. |
upload --overwrite <env_name> --description 'some description' -t <name> <value> Note: You can provide many tags. For example:-t <name1> <value1> -t <name2> <value2> .. |
|
Download and unpack a specific Conda environment from the object storage.
Note: This is an Autonomous Database specific command. |
download --overwrite <env_name> |
|
List local environments available to the user. | list-local-envs |
|
List all Conda environments in the object storage.
Note: This is an Autonomous Database specific command. |
list-saved-envs --installed-packages -e <env_name> |
|
Delete a Conda environment.
Note: This is an Autonomous Database specific command. |
delete <env_name> Note: The Conda environment is deleted from the Object Storage. |
|
Update conda packages to the latest compatible version. | update |
|
Upgrade the current conda package. It is also an alias for conda update .
|
upgrade |
|
Search for packages and display associated information. The input is a MatchSpec , a query language for conda packages.
|
search |
|
Parent topic: Use the Conda Interpreter in a Notebook Paragraph