CLI tool to look for the best conda environment which satisfies certain requirements
Project description
condascan
CLI tool to scan through existing conda environments. It helps you manage your conda environments by:
- Finding environments that satisfy a
requirements.txtorenvironment.ymlfile. You can then clone them, instead of creating a new environment from scratch. - Checking if a command is available in some environments, as well as getting the result of executing the command.
- Compare different environments to see which packages are unique or shared. Then, you can delete environments that are not needed anymore.
Installation
You can install condascan using pip:
pip install condascan
Additionally, conda has to be installed on your system, either using miniconda, anaconda, miniforge, mambaforge, etc. Make sure that you can execute the following command:
conda --version
Usage
Search by Requirements
Using the have command, you can scan through your conda environments and find those that satisfy a given requirement. The bash command is as follows:
condascan have <requirement>
<requirement> can be one of the following:
- A string enclosed in quotes, specifying space-separated package names in PEP 440 format, e.g.,
"numpy pandas","numpy==1.2.* pandas>=2.1.0". - A path to a
requirements.txtfile, generated bypip freeze - A path to a
environment.ymlfile, generated byconda env export
Check Command Availability
To see if a command is available in any of your conda environments, use the can-execute command:
condascan can-execute <command>
<command> can be one of the following:
- A string enclosed in quotes, specifying the command to run, e.g.,
"nvcc --version" - A path to
.txtfile containing list of commands, one per line.
Note: To determine if a command can be executed in a given environment, condascan will actually run the command inside each environment. This means any side effects (e.g., creating files, modifying state, or triggering installations) will occur if the command succeeds. Make sure the commands you're testing are safe and have predictable behavior across environments.
Compare Environments
To compare two or more environments, use the compare command:
condascan compare <envs>
can be one of the following:
- A string enclosed in quotes, specifying space-separated installed environment names, e.g.,
"base env1 env2" - A path to a
.txtfile containing list of installed environment names, one per line.
Caching
To speed up execution, condascan caches the results of previous runs. The cache is stored in ~/.cache/condascan. If in-between executing condascan you modify your conda environments or you want to run without cache, you can do so by adding --no-cache flag. For example:
condascan have "numpy pandas" --no-cache
Formatting Output
Verbose, Limit, and First Flags
Note: These flags are only applicable for have and can-execute commands
To get the detailed output of condascan, you can add --verbose flag. For example:
condascan can-execute "nvcc --version" --verbose
To limit the number of environments displayed in the output, you can use the --limit flag. Note that this is only applicable for have and can-execute commands. For example:
condascan have "numpy pandas" --limit 5
To find the first environment that satisfies the requirement, you can use the --first flag. Note that in this case, condascan will only scan the environments until it finds the first one that satisfies the requirement, and then it will stop scanning further. This can significantly speed up the search if you only need one environment that meets the requirement.
For example:
condascan have "numpy pandas" --first
Pip Flag
Note: These flags are only applicable for compare command
By default, the compare command will compare every installed package from any channel in the environments. If you want to compare only packages installed from pip, you can use the --pip flag. For example:
condascan compare "env1 env2" --pip
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file condascan-1.0.0.tar.gz.
File metadata
- Download URL: condascan-1.0.0.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bf883f8b5c85cd8859062d5fe3dee66066fabf1b6f1cbf5f4787ee92c5990d6
|
|
| MD5 |
27b65763e524b9aa1e1fb1e2f23251c7
|
|
| BLAKE2b-256 |
738f6f21a045634531d3ca60a7a5bbd258cc06ca644d3dd8e5d063c780635616
|
File details
Details for the file condascan-1.0.0-py3-none-any.whl.
File metadata
- Download URL: condascan-1.0.0-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b962b63f0d5afa829297fd79f48c773b9af5bfb500d49aa8ca047852dbc43a4
|
|
| MD5 |
14d9c18c664ea918a91e009067837b43
|
|
| BLAKE2b-256 |
ee3b2a37b4364990a75f92d3ebfc747ad189d60493426d0e470667dc7dd2cd33
|