attack_range icon indicating copy to clipboard operation
attack_range copied to clipboard

Docutils dependency not found

Open Thomas-McKanna opened this issue 1 year ago • 3 comments

I followed the installation instructions at https://attack-range.readthedocs.io/en/latest/Attack_Range_AWS.html for both macOS and Linux. The Mac has an Apple Silicon chip, and the Linux machine runs Ubuntu 22.04.

In both cases, running poetry install results in the following error:

Updating dependencies
Resolving dependencies... (1.8s)

Package docutils (0.21.post1) not found.

I thought the issue might be related to my Python version (3.11), so I installed Python 3.8 (as specified in the Linux installation instructions), but the same error occurred.

Thomas-McKanna avatar May 14 '24 19:05 Thomas-McKanna

I encountered the same issue trying to install on Ubuntu 24.04. Will keep digging to find a workaound

waja1n0z avatar May 17 '24 07:05 waja1n0z

There's a poetry bug listed for it here: https://github.com/python-poetry/poetry/issues/9293

Might just need to bump the docutils version to avoid the yanked package?

yaleman avatar Jun 02 '24 20:06 yaleman

Adding https://pypi.org/simple/ as the source to pyproject.toml worked as a workaround for me

[[tool.poetry.source]]
name = "pypi-public"
url = "https://pypi.org/simple/"

0xtamsee1 avatar Jun 09 '24 09:06 0xtamsee1

this is fixed. Thank you.

P4T12ICK avatar Aug 13 '24 12:08 P4T12ICK