Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLMS authored Aug 9, 2024
1 parent abd120e commit 24ea0f5
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,21 @@ This option is the simplest way to install Aphra if you don't need to isolate it
pip install .
```
#### Option 2: Use a Virtual Environment
#### Option 2: Install with Poetry
Poetry is a dependency management and packaging tool for Python that helps you manage your project's dependencies more effectively. It also simplifies the process of packaging your Python projects.

1. Install Poetry if you haven't already:
```bash
curl -sSL https://install.python-poetry.org | python3 -
```
2. Install dependencies and the package:
```bash
poetry install
```
#### Option 3: Use a Virtual Environment
A virtual environment is an isolated environment that allows you to install packages separately from your system's Python installation. This is particularly useful to avoid conflicts between packages required by different projects.

Expand All @@ -149,20 +163,6 @@ A virtual environment is an isolated environment that allows you to install pack
pip install .
```

#### Option 3: Install with Poetry

Poetry is a dependency management and packaging tool for Python that helps you manage your project's dependencies more effectively. It also simplifies the process of packaging your Python projects.
1. Install Poetry if you haven't already:
```bash
curl -sSL https://install.python-poetry.org | python3 -
```

2. Install dependencies and the package:
```bash
poetry install
```

#### Option 4: Use Docker

Docker is a platform that allows you to package an application and its dependencies into a "container." This container can run consistently across different environments, making it ideal for ensuring that your project works the same way on any machine.
Expand Down

0 comments on commit 24ea0f5

Please sign in to comment.