You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned in issue 122, the installation guideline is off. The following command is wrong:
pip install <egg file>
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:
python setup.py install
To verify installation, run pip freeze. In my case, this produces something like this:
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 b2handle
completes without error. I'm putting this here hoping it will saves some people time.The text was updated successfully, but these errors were encountered: