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
Running armory with python3.8 on windows will throw this error: docker.errors.DockerException: Install pypiwin32 package to enable npipe:// support
This is a bit cryptic since pypiwin32 is already installed as a dependency in docker library. Since 3.8 there is a new way packages run post_install and this causes an underlying issue when importing pypiwin32.
It can be fixed by running: python <path-to-python-env>\Scripts\pywin32_postinstall.py -install
Running armory with python3.8 on windows will throw this error:
docker.errors.DockerException: Install pypiwin32 package to enable npipe:// support
This is a bit cryptic since pypiwin32 is already installed as a dependency in docker library. Since 3.8 there is a new way packages run post_install and this causes an underlying issue when importing pypiwin32.
It can be fixed by running:
python <path-to-python-env>\Scripts\pywin32_postinstall.py -install
Reference:
docker/docker-py#1870
mhammond/pywin32#1431
Alternatively it could be fixed by conda installing pywin32, but we do not currently package armory in conda.
The text was updated successfully, but these errors were encountered: