Skip to content

Commit

Permalink
Update installation instructions
Browse files Browse the repository at this point in the history
Make sure the commands don't have leading spaces
  • Loading branch information
miguelsousa committed May 14, 2024
1 parent 150e6bb commit c979eb7
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,29 @@ Note for Linux users (and users of other platforms that are not macOS or Windows

- Create a virtual environment:

python -m venv afdko_env
```sh
python -m venv afdko_env
```

- Activate the virtual environment:

- macOS & Linux

source afdko_env/bin/activate
```sh
source afdko_env/bin/activate
```

- Windows

afdko_env\Scripts\activate.bat
```sh
afdko_env\Scripts\activate.bat
```

- Install [afdko](https://pypi.python.org/pypi/afdko):

python -m pip install afdko
```sh
python -m pip install afdko
```

Installing the **afdko** inside a virtual environment prevents conflicts
between its dependencies and other modules installed globally.
Expand Down

0 comments on commit c979eb7

Please sign in to comment.