From bcda3e17ba1c30d14117df26e6f32460dabac574 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Wed, 31 Jul 2024 09:39:28 +0200 Subject: [PATCH] docs: don't assume people use pip anymore --- docs/index.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docs/index.md b/docs/index.md index 50dfa163d..ed4aa85b6 100644 --- a/docs/index.md +++ b/docs/index.md @@ -30,13 +30,8 @@ for sponsor in tomllib.loads(pathlib.Path("pyproject.toml").read_text())["tool"] ## Getting Started *attrs* is a Python-only package [hosted on PyPI](https://pypi.org/project/attrs/). -The recommended installation method is [pip](https://pip.pypa.io/en/stable/)-installing into a [virtualenv](https://hynek.me/articles/virtualenv-lives/): -```console -$ python -Im pip install attrs -``` - -The next steps will get you up and running in no time: +The following steps will get you up and running in no time: - {doc}`overview` will show you a simple example of *attrs* in action and introduce you to its philosophy. Afterwards, you can start writing your own classes and understand what drives *attrs*'s design.