-
I created a python virtual env then installed sbase using: Collecting wheel>=0.37.0 error: invalid command 'bdist_wheel'ERROR: Failed building wheel for ipdb |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@maburrub Your version of |
Beta Was this translation helpful? Give feedback.
@maburrub Your version of
setuptools
is so old, (44.0.0
vs latest59.6.0
), that you'll probably have to upgrade that first, independently, before installingseleniumbase
:pip install --upgrade setuptools
And you should do the same for
pip
too:pip install --upgrade pip
Then you can install the rest as needed.