-1

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!

AMC
  • 2,642
  • 7
  • 13
  • 35
Kachopsticks
  • 125
  • 1
  • 13
  • `zeep` and `binascii` are available as Conda packages? Are you using the correct channel(s) ? – AMC Aug 12 '20 at 00:31

1 Answers1

0
pip install zeep

pip install pycopy-binascii

You need to install these libraries (execute both commands in terminal separately ) in the same environment that you are using and also need to make sure that you're using python 3.7 or higher .

After doing this , try running you .yml file again!

Jerry
  • 366
  • 4
  • 22