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
The DEPENDENCIES_... files currently list only the direct dependencies defined in the requirements.txt file.
Expected Behavior
The DEPENDENCIES_... files should include all dependencies, including those that are automatically installed when the direct dependencies from the requirements.txt are installed.
Steps To Reproduce
Go to ichub-backend folder
Run pip install -r requirements.txt to install the dependencies.
Execute the following command to list the installed dependencies:
ip list --format=freeze | grep -Pv "^(pip|setuptools|wheel|virtualenv|distlib|pkg_resources)"| awk -F'==''{print "pypi/pypi/-/" $1 "/" $2}'| awk '!seen[$0]++'> PACKAGE
Run the Dash-License tool with the generated list of dependencies (PACKAGE).
The text was updated successfully, but these errors were encountered:
Current Behavior
The
DEPENDENCIES_...
files currently list only the direct dependencies defined in therequirements.txt
file.Expected Behavior
The
DEPENDENCIES_...
files should include all dependencies, including those that are automatically installed when the direct dependencies from therequirements.txt
are installed.Steps To Reproduce
ichub-backend
folderpip install -r requirements.txt
to install the dependencies.PACKAGE
).The text was updated successfully, but these errors were encountered: