Hello! Does anyone know the conda syntax for insta...
# ask-community
k
Hello! Does anyone know the conda syntax for installing the optional dependencies? I’d like to install from conda using an
environment.yml
file the equivalent of this:
Copy code
pip install "prefect[extra_1, extra_2]"
k
Hey @Kim Pevey, I am pretty sure
conda
doesn’t respect the extras syntax because you can’t do
conda install prefect[extra]
.
This is the relevant issue.