Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ For more elaborate installing instructions check out the page below for both [in
## Installing from PyPI
Installing from the Python Package Index (PyPI) can be done using the standard `pip` command. We strongly recommended installing the Activity Browser into a separate [virtual environment](https://realpython.com/python-virtual-environments-a-primer/)

First make sure you have Python installed on your PC by entering the following command into your terminal or command prompt. At this moment the AB is compatible with Python versions 3.10, 3.11, and 3.12.
First make sure you have Python installed on your PC by entering the following command into your terminal or command prompt.
At this moment the AB is compatible with Python versions 3.10, 3.11, and 3.12.

```
python --version
Expand All @@ -51,7 +52,8 @@ Afterwards, you need to activate the virtual environment, which differs between
```
C:\Users\me\virtualenvs\ab-beta\Scripts\activate.bat
```
Possibly double-check if the Python version of your virtual environment is compatible with the AB. For a full overview of activation commands, [check out the documentation here](https://docs.python.org/3/library/venv.html#how-venvs-work)
Possibly double-check if the Python version of your virtual environment is compatible with the AB.
For a full overview of activation commands, [check out the documentation here](https://docs.python.org/3/library/venv.html#how-venvs-work)

### Activity Browser installation
After creating and activating the virtual environment, installing the Beta should be as simple as using the following command:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies = [
"arrow",
"bw2analyzer>=0.11.5",
"bw2calc>=2.0",
"bw2data>=4.1, <4.5.2",
"bw2data>=4.1",
"bw2parameters>=1.1",
"bw2io>=0.9.3",
"bw_graph_tools>=0.5",
Expand All @@ -50,7 +50,7 @@ dependencies = [
"pint<=0.21",
"py7zr==0.22.0",
"pyperclip",
"pyside6",
"pyside6>=6.5.0, <6.10",
"pypardiso ; platform_system == 'Windows'",
"pyprind",
"qtpy",
Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ requirements:
- python >=3.10, <3.12
- arrow
- bw2analyzer >=0.11.5
- bw2data >=4.1, <4.5.2
- bw2data >=4.1
- bw2parameters >=1.1
- bw2io >=0.9.3
- bw_graph_tools >=0.5
Expand Down
Loading