marksull / fmcapi

A Python package designed to help users of Cisco's FMC interface with its API.
BSD 3-Clause "New" or "Revised" License
81 stars 57 forks source link

zope.interface version #78

Closed MysticRyuujin closed 4 years ago

MysticRyuujin commented 4 years ago

I have an interesting problem and I can't figure out if it's related to this module or not...I think it is...

I'm TRYING to install this module on a server that doesn't have internet access, so I ran:

pip download fmcapi -d c:\temp\fmcapi

I then transferred that folder over to the server containing the following files:

certifi-2020.6.20-py2.py3-none-any.whl
chardet-3.0.4-py2.py3-none-any.whl
DateTime-4.3-py2.py3-none-any.whl
fmcapi-20200615.0-py3-none-any.whl
idna-2.10-py2.py3-none-any.whl
ipaddress-1.0.23-py2.py3-none-any.whl
pytz-2020.1-py2.py3-none-any.whl
requests-2.24.0-py2.py3-none-any.whl
setuptools-49.2.0-py3-none-any.whl
urllib3-1.25.9-py2.py3-none-any.whl
zope.interface-5.1.0-cp38-cp38-win_amd64.whl

I then attempt to install it:

pip install --user fmcapi-20200615.0-py3-none-any.whl -f ./ --no-index

The error I get is:

Could not find a version that satisfies the requirement zope.interface (from datetime->fmcapi==20200615.0) (from version: ) No matching distribution found for zope.interface (from datetime->fmcapi==20200615.0)

The part that trips me up is a) This process works perfectly fine installing OTHER modules, e.g. requests, tqdm, etc. and b) the "from version:" is blank...so I'm not even sure what it's looking for here...

MysticRyuujin commented 4 years ago

I think I figured it out, I'm trying to transfer from a 3.8 to a 3.7...and zope.interface has release dependent wheel files...