Reputation: 201
IDK what to do, tried with python3.8.5, python3.7,python3.6 It can't install ecapture module
ERROR: Command errored out with exit status 1: /usr/local/bin/python3.7 /usr/local/lib/python3.7/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-fnpxi2jh/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- setuptools wheel scikit-build cmake pip 'numpy==1.11.3; python_version=='"'"'3.5'"'"'' 'numpy==1.13.3; python_version=='"'"'3.6'"'"'' 'numpy==1.14.5; python_version=='"'"'3.7'"'"'' 'numpy==1.17.3; python_version>='"'"'3.8'"'"'' Check the logs for full command output.
Upvotes: 0
Views: 7052
Reputation: 33
Anything before pip
will result in an error. You just need to download the old version of the ecapture
to solve your issue.
You can use the command below for windows:
pip install ecapture==0.0.7
it will definitely work.
Upvotes: 3
Reputation: 61
I did this on Google Colab jupyter and it worked.
!pip install ecapture
Upvotes: 0