I am trying to run the following yml file. When it runs I get the error below. I use command
conda env create -f myTool.yml
myTool.yml
name: myTool
dependencies:
- python=3.7
- xlrd
- openpyxl
- re2
- zeep
- pandas
- binascii
- requests
The Error I get:
(base) C:\Users\myProfile\pythonYML>conda env create -f myTool.yml Collecting package metadata (repodata.json): done Solving environment: failed
ResolvePackageNotFound:
- zeep
- binascii
If I type "Python" in the terminal I get this...
(base) C:\Users\myProfile\pythonYML>python Python 3.7.6 (default, Jan 8 2020, 20:23:39) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32 Type "help", "copyright", "credits" or "license" for more information.
My python install came with anaconda. I did opt to add the PATH variable. Any and all suggestions appreciated.
Thanks!