CartoonGan-tensorflow
CartoonGan-tensorflow copied to clipboard
problem with environment_mac_cpu.yml
conda env create -n cartoongan -f environment_mac_cpu.yml
and some errors happen
SpecNotFound: Invalid name, try the format: user/package
I'm using a MacBook with anaconda3 conda: 4.7.10 pip 18.1 from /home/comp/anaconda3/lib/python3.7/site-packages/pip I found some discussion about the instruction "conda env create" not working, but I'm not sure if there's also problems with the yml document, thanks!
I tried conda==4.7.10 and pip==18.1 but cannot reproduce your issue.
Can you either try
conda clean -a
conda-env create -f environment_mac_cpu.yml
or
conda update -n base -c defaults conda
conda env create -n cartoongan -f environment_mac_cpu.yml
?