As mentioned in issue 122, the installation guideline is off. The following command is wrong:
where <egg file> is found in .\dist (or ./dist). The command produces this error:
Collecting b2handle-1.1.1-py2.7.egg
Could not find a version that satisfies the requirement b2handle-1.1.1-py2.7.egg (from versions: )
No matching distribution found for b2handle-1.1.1-py2.7.egg
Instead, one should run:
To verify installation, run pip freeze. In my case, this produces something like this:
b2handle==1.1.1
certifi==2017.7.27.1
chardet==3.0.4
datetime==4.2
future==0.16.0
idna==2.6
pytz==2017.2
requests==2.18.4
urllib3==1.22
zope.interface==4.4.2
Starting a Python prompt and doing import b2handle completes without error. I'm putting this here hoping it will saves some people time.
As mentioned in issue 122, the installation guideline is off. The following command is wrong:
where
<egg file>is found in .\dist (or ./dist). The command produces this error:Instead, one should run:
To verify installation, run
pip freeze. In my case, this produces something like this:Starting a Python prompt and doing
import b2handlecompletes without error. I'm putting this here hoping it will saves some people time.