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
sudo apt-get install -y dse-full=4.6.1-1 fails if 4.6.1-1 isn't the latest version available in the repository. apt-get tries to install the latest version of deps, even though dse-full requires it's deps to version-match itself exactly.
The workaround is to specify all the deps and versions in a single apt-get install call, like so:
It would be better to run apt-cache depends dse-full=version or apt-cache show dse-full=version and parse the dependencies out of that output rather than hard-code it and have to update every version and add custom logic if the package-list changes.
The text was updated successfully, but these errors were encountered:
The dependency-resolver for the apt tools don't make it easy to install old versions of metapackages (as documented at http://docs.datastax.com/en/datastax_enterprise/4.6/datastax_enterprise/install/installPrevious.html).
sudo apt-get install -y dse-full=4.6.1-1
fails if 4.6.1-1 isn't the latest version available in the repository. apt-get tries to install the latest version of deps, even though dse-full requires it's deps to version-match itself exactly.The workaround is to specify all the deps and versions in a single apt-get install call, like so:
We currently hardcode the package list in the ami code:
ComboAMI/ds2_configure.py
Line 419 in b868fe1
It would be better to run
apt-cache depends dse-full=version
orapt-cache show dse-full=version
and parse the dependencies out of that output rather than hard-code it and have to update every version and add custom logic if the package-list changes.The text was updated successfully, but these errors were encountered: