Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Linux, 1.1.0a3, Python3.6] X is not a supported wheel on this platform. #2688

Closed
3 tasks done
scoiatael opened this issue Jul 20, 2020 · 20 comments · Fixed by #2666
Closed
3 tasks done

[Linux, 1.1.0a3, Python3.6] X is not a supported wheel on this platform. #2688

scoiatael opened this issue Jul 20, 2020 · 20 comments · Fixed by #2666
Labels
kind/bug Something isn't working as expected

Comments

@scoiatael
Copy link

  • I am on the latest Poetry version.
  • I have searched the issues of this repo and believe that this is not a duplicate.
  • If an exception occurs when executing a command, I executed it again in debug mode (-vvv option).

Problem with installation of grpcio on Python 3.6 with Poetry 1.1.0a3

First of all looks like faster installation in 1.1 will be a great feature, can't wait to have it on stable :)

However when I tried using that feature to speed up our Docker build I encountered a problem with installation of grpcio on python 3.6 (works on 3.8 fine, also works with Poetry 1.0.9 on both Python versions):

Command ['/root/.cache/pypoetry/virtualenvs/poetry-grpcio-issue-o9msT97p-py3.6/bin/python', '-m', 'pip', 'install', '--no-deps', '/root/.cache/pypoetry/artifacts/e4/1a/fb/cc14443ebcdd3b0d5df7ca7fbffdc7d9343564703a67906925174cd179/grpcio-1.30.0-cp36-cp36m-manylinux2010_x86_64.whl'] errored with the following return code 1, and output:
  grpcio-1.30.0-cp36-cp36m-manylinux2010_x86_64.whl is not a supported wheel on this platform.
  You are using pip version 18.1, however version 20.2b1 is available.
  You should consider upgrading via the 'pip install --upgrade pip' command.


  at /usr/local/lib/python3.6/site-packages/poetry/utils/env.py:937 in _run
       933│                 output = subprocess.check_output(
       934│                     cmd, stderr=subprocess.STDOUT, **kwargs
       935│                 )
       936│         except CalledProcessError as e:
    →  937│             raise EnvCommandError(e, input=input_)
       938│
       939│         return decode(output)
       940│
       941│     def execute(self, bin, *args, **kwargs):

You can find minimal working example here.

Cheers!

@scoiatael scoiatael added kind/bug Something isn't working as expected status/triage This issue needs to be triaged labels Jul 20, 2020
@abn
Copy link
Member

abn commented Jul 20, 2020

@scoiatael the root cause for this issue is the default pip version used by the 3.6 container for the virtual environments. Can you try the develop branch? This should have a fix for this (#2666).

pip install git+https://github.com/python-poetry/poetry.git@develop

@abn abn linked a pull request Jul 21, 2020 that will close this issue
1 task
@scoiatael
Copy link
Author

@abn I confirmed it works with develop branch (scoiatael/poetry-grpcio-issue@0d3f83d).
Awesome, thanks for quick response and I'm waiting for next pre-release then :)

@abn abn removed the status/triage This issue needs to be triaged label Sep 25, 2020
@Spectre5 Spectre5 mentioned this issue Nov 15, 2020
2 tasks
@dbalabka
Copy link

It seems I'm getting the same error on 1.1.4

@sinoroc
Copy link

sinoroc commented Nov 20, 2020

@dbalabka Are you sure it is the same error? Would you mind showing us the full console output of the command (in verbose mode -vvv) containing you error?

@dbalabka
Copy link

@sinoroc it looks like the same error but for a different package.

You can uninstall at any time by executing this script with the --uninstall option,
and these changes will be reverted.
Installing version: 1.1.4
  - Downloading poetry-1.1.4-linux.tar.gz (57.03MB)
Poetry (1.1.4) is installed now. Great!
To get started you need Poetry's bin directory ($HOME/src/releases/76/.poetry/bin) in your `PATH`
environment variable. Next time you log in this will be done
automatically.
To configure your current shell run `source $HOME/src/releases/76/.poetry/env`
Installing dependencies from lock file
Package operations: 87 installs, 0 updates, 0 removals
  • Installing pyasn1 (0.4.8)
  • Installing six (1.15.0)
  • Installing cachetools (4.1.0)
  • Installing certifi (2020.4.5.1)
  • Installing chardet (3.0.4)
  • Installing idna (2.9)
  • Installing protobuf (3.12.1)
  • Installing pyasn1-modules (0.2.8)
  • Installing pycparser (2.20)
  • Installing rsa (4.0)
  • Installing urllib3 (1.25.9)
  • Installing cffi (1.14.0)
  • Installing google-auth (1.15.0)
  • Installing pytz (2020.1)
  • Installing zipp (3.1.0)
  • Installing requests (2.23.0)
  • Installing googleapis-common-protos (1.51.0)
  • Installing bcrypt (3.1.7)
  • Installing cryptography (2.9.2)
  • Installing google-api-core (1.17.0)
  • Installing importlib-metadata (1.6.1)
  • Installing lazy-object-proxy (1.4.3)
  • Installing pynacl (1.3.0)
  • Installing numpy (1.17.4)
  • Installing dataclasses (0.7)
  • Installing pyparsing (2.4.7)
  • Installing typed-ast (1.4.1)
  • Installing wrapt (1.11.2)
  EnvCommandError
  Command ['/home/src/releases/76/.venv/bin/pip', 'install', '--no-deps', '/home/.cache/pypoetry/artifacts/0b/fe/ce/206b9be2dff6f98091c9f1ea636402b3cb4a72afce26b0478f0508fd0c/cryptography-2.9.2-cp35-abi3-manylinux2010_x86_64.whl'] errored with the following return code 1, and output: 
  cryptography-2.9.2-cp35-abi3-manylinux2010_x86_64.whl is not a supported wheel on this platform.
  You are using pip version 9.0.3, however version 20.2.4 is available.
  You should consider upgrading via the 'pip install --upgrade pip' command.
  
  at .poetry/lib/poetry/utils/env.py:1074 in _run
      1070│                 output = subprocess.check_output(
      1071│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1072│                 )
      1073│         except CalledProcessError as e:
    → 1074│             raise EnvCommandError(e, input=input_)
      1075│ 
      1076│         return decode(output)
      1077│ 
      1078│     def execute(self, bin, *args, **kwargs):

@sinoroc
Copy link

sinoroc commented Nov 23, 2020

cryptography again? There have been quite some reports of failures on the cryptography dependency. Not sure what the root link between those reports is if any, or if it is just a coincidence. In one of the cases, it turned out to be that the pip version used was too old somehow.

@dbalabka
Copy link

@sinoroc I've rollback to Poetry version 1.0.10 and it works. It seems I'm running a pretty old version of pip 9.0.3. If it is the cause then it would be good to set a minimum required pip version or report a warning.

@sinoroc
Copy link

sinoroc commented Nov 24, 2020

@dbalabka Oh, yes, the pip version string is right there in the error message you posted. I had not seen it earlier: "pip version 9.0.3". Which is quite old indeed (and might have issues with the manylinux2010 tag maybe?). Although I am a bit surprised that this version of pip is used at all. As far as I know, poetry relies on virtualenv. And virtualenv usually installs up-to-date pip versions in the virtual environments it creates. I wonder if maybe at this point, we are not in a usual virtual environment but maybe in a temporary build environment. Those environment might follow different rules.

Not sure it has an influence on the pip version issue, but @dbalabka what installation method did you use to install poetry itself? The get-poetry.py method or a different one?

@dbalabka
Copy link

dbalabka commented Jan 4, 2021

@sinoroc sorry about the delay. Here is the script which I use to install poetry during the build:

curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | POETRY_VERSION=1.0.10 POETRY_HOME="$(pwd)/.poetry/" python

@sinoroc
Copy link

sinoroc commented Jan 4, 2021

@dbalabka Have you tried removing the .venv directory and restarting from scratch?

@dbalabka
Copy link

dbalabka commented Jan 4, 2021

@sinoroc I've fixed the by installing the latest version of pip. So, it would be great to add some warning message which warns the user about possible issues.

@sinoroc
Copy link

sinoroc commented Jan 4, 2021

@dbalabka But there was a warning message from pip:

You are using pip version 9.0.3, however version 20.2.4 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

The default behaviour is for poetry to delegate the creation of virtual environments to virtualenv, and virtualenv takes care of installing recent versions of pip, setuptools, etc.

Not sure how it happened that you had such an old pip in that virtual environment.

@dbalabka
Copy link

dbalabka commented Jan 4, 2021

@sinoroc poetry uses OS's preinstalled pip if it is not installed in venv. I don't have permissions to updated OS pip. I have to install newest version of pip under venv and it solves the problem.

@sinoroc
Copy link

sinoroc commented Jan 4, 2021

@dbalabka What poetry version are you using?

@dbalabka
Copy link

dbalabka commented Jan 4, 2021

@sinoroc sorry about the delay. Here is the script which I use to install poetry during the build:


curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | POETRY_VERSION=1.0.10 POETRY_HOME="$(pwd)/.poetry/" python

@sinoroc it is POETRY_VERSION=1.0.10

@sinoroc
Copy link

sinoroc commented Jan 4, 2021

@dbalabka I see... I am not sure how it is supposed to behave in that older version. With poetry 1.1 it seems it always uses virtualenv and thus pip is always quite recent. At least that is what I understood, I might be wrong.

@dbalabka
Copy link

dbalabka commented Jan 5, 2021

@sinoroc thanks for your time. I think the problem is solved.

@amjltc295
Copy link

amjltc295 commented Jun 3, 2021

I got a similar error:

  EnvCommandError

  Command ['/Users/allen.c/Library/Caches/pypoetry/virtualenvs/app-6aZ328yD-py3.8/bin/pip', 'install', '--no-deps', '-U', '/Users/allen.c/Library/Caches/pypoetry/artifacts/cd/11/54/fd481eec49cddc06876e526483e7ee8675d0910fed2aa7668a9fc88e62/MarkupSafe-2.0.1-cp38-cp38-mac
osx_10_9_x86_64.whl'] errored with the following return code 1, and output:
  ERROR: MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl is not a supported wheel on this platform.
  WARNING: You are using pip version 20.2.2; however, version 21.1.2 is available.
  You should consider upgrading via the '/Users/allen.c/Library/Caches/pypoetry/virtualenvs/app-6aZ328yD-py3.8/bin/python -m pip install --upgrade pip' command.

That pip version was a warning and I ignored it. However, at the end I fixed the problem by running what it says

/Users/allen.c/Library/Caches/pypoetry/virtualenvs/app-6aZ328yD-py3.8/bin/python -m pip install --upgrade pip

@luksfarris
Copy link

I've just had this exact issue installing cryptography==35.0.0 with poetry==1.1.9 and pip==19.3.1.
Updating to poetry==1.1.11 and pip==21.2.4 solved it for me.

vincenzopalazzo added a commit to vincenzopalazzo/lightning that referenced this issue Mar 25, 2022
The CI fails with the following error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>
vincenzopalazzo added a commit to vincenzopalazzo/lightning that referenced this issue Mar 25, 2022
The CI fails with the following error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>
vincenzopalazzo added a commit to vincenzopalazzo/lightning that referenced this issue Mar 25, 2022
The CI fails with the following error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>
vincenzopalazzo added a commit to vincenzopalazzo/lightning that referenced this issue Mar 25, 2022
The CI fails with the error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>
vincenzopalazzo added a commit to vincenzopalazzo/lightning that referenced this issue Mar 25, 2022
The CI fails with the error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>x
vincenzopalazzo added a commit to vincenzopalazzo/lightning that referenced this issue Mar 25, 2022
The CI fails with the error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>x
vincenzopalazzo added a commit to vincenzopalazzo/lightning that referenced this issue Mar 25, 2022
The CI fails with the error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>x
vincenzopalazzo added a commit to vincenzopalazzo/lightning that referenced this issue Mar 29, 2022
The CI fails with the error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>x
vincenzopalazzo added a commit to vincenzopalazzo/lightning that referenced this issue Mar 30, 2022
The CI fails with the error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>x
rustyrussell pushed a commit to ElementsProject/lightning that referenced this issue Mar 31, 2022
The CI fails with the error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>x
rustyrussell pushed a commit to rustyrussell/lightning that referenced this issue Mar 31, 2022
The CI fails with the error

```
EnvCommandError

  Command ['/usr/bin/python3', '-m', 'pip', 'install', '--no-deps', '-U', '/root/.cache/pypoetry/artifacts/07/6f/ab/ca33bde7c6751a5ad8d13495b766891cd70e61786112885733ce9b0562/cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl'] errored with the following return code 1, and output: 
  ERROR: cryptography-36.0.2-cp36-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform.
  

  at ~/.local/lib/python3.8/site-packages/poetry/utils/env.py:1195 in _run
      1191│                 output = subprocess.check_output(
      1192│                     cmd, stderr=subprocess.STDOUT, **kwargs
      1193│                 )
      1194│         except CalledProcessError as e:
    → 1195│             raise EnvCommandError(e, input=input_)
      1196│ 
      1197│         return decode(output)
      1198│ 
      1199│     def execute(self, bin, *args, **kwargs):
```

The solution is to upgrade the pip version as suggested in python-poetry/poetry#2688 (comment)

Signed-off-by: Vincenzo Palazzo <[email protected]>x
Copy link

github-actions bot commented Mar 2, 2024

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 2, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
kind/bug Something isn't working as expected
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants