parsenet-codebase
parsenet-codebase copied to clipboard
Incorrect conda env create statement in readme
The installation guide in the readme says that to install the conda environment, the following code should be run:
conda env create --force environment.yml -n parsenet
But there is to my knowledge no "--force" flag in the conda env create command, and from the documentation of that command and from trying it out myself, --file would make much more sense. Running the code as above gave me the following error: SpecNotFound: Invalid name 'environment.yml', try the format: user/package
, however running it as
conda env create --file environment.yml -n parsenet
works perfectly.