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
Some dependencies listed in requirements.txt contain local file paths that point to builds done on a specific system. For example:
anyio @ file:///home/conda/feedstock_root/build_artifacts/anyio_1666191106763/work/dist
These local paths will fail to install when trying to recreate the environment on a different system.
To fix, the requirements.txt file should be updated to reference only the package names and versions, without local build paths. For example:
anyio==3.5.0
This will allow the packages to be installed from PyPI or a package repository rather than relying on local builds.
Updating requirements.txt to remove all local file paths will ensure the list of dependencies can be properly installed on other systems.
The text was updated successfully, but these errors were encountered:
Some dependencies listed in requirements.txt contain local file paths that point to builds done on a specific system. For example:
anyio @ file:///home/conda/feedstock_root/build_artifacts/anyio_1666191106763/work/dist
These local paths will fail to install when trying to recreate the environment on a different system.
To fix, the requirements.txt file should be updated to reference only the package names and versions, without local build paths. For example:
anyio==3.5.0
This will allow the packages to be installed from PyPI or a package repository rather than relying on local builds.
Updating requirements.txt to remove all local file paths will ensure the list of dependencies can be properly installed on other systems.
The text was updated successfully, but these errors were encountered: