Sem-Dialogue
Sem-Dialogue copied to clipboard
Problems about the create the environment
Hi, @freesunshine0316 , recently I have tried to run your projects, but when I run the commond line conda create --name <env_name> --file requirements.txt
, there occurences some problems as follows:
Collecting package metadata (current_repodata.json): done
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed
PackagesNotFoundError: The following packages are not available from current channels:
nlp=0.4.0=pypi_0
apex=0.1=pypi_0
bpemb=0.3.2=pypi_0
.......
These problems may be caused by the conda list --export
, which does not capture pip-installed packages in a form that allows for recreating the environment. Resolution can be found at conda export yaml .
Thanks!