You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will let ezconda track the pip dependencies installed in the environment.
# will do 'pip install typer` in 'test' conda environment
ezconda install -n test typer --pip
The user can obviously simply do this as pip install typer but doing it with ezconda will also write it to environment.yml file as well as environment.lock file.
Could also potentially add the functionality to search for the package on conda with this command and if it is available, suggest the user to install the conda version?
The text was updated successfully, but these errors were encountered:
This will let
ezconda
track thepip
dependencies installed in the environment.The user can obviously simply do this as
pip install typer
but doing it withezconda
will also write it toenvironment.yml
file as well asenvironment.lock
file.Could also potentially add the functionality to search for the package on conda with this command and if it is available, suggest the user to install the conda version?
The text was updated successfully, but these errors were encountered: