Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrolexa committed Jan 24, 2025
1 parent 3c4683c commit 35ae9da
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,23 @@ for Windows use PowerShell:
> PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
> ```
and install **pypsbuilder** using pip within the environment:
and install **pypsbuilder** using pip within the environment. **You should choose the UI framework using option** `pyqt5` **or** `pyqt6`:
pip install pypsbuilder[pyqt6]
Providing jupyter option, JupyterLab will be also installed:
JupyterLab could also be installed providing the `jupyter` option:
pip install pypsbuilder[pyqt6,jupyter]
## I'm using conda or mamba to manage environments
If you have already have conda or mamba installed, you can create environment with:
conda create -n pyps numpy matplotlib scipy networkx shapely pyqt tqdm jupyterlab
conda create -n pyps matplotlib shapely pyqt tqdm scikit-image qtpy jupyterlab
or
mamba create -n pyps numpy matplotlib scipy networkx shapely pyqt tqdm jupyterlab
mamba create -n pyps matplotlib shapely pyqt tqdm scikit-image qtpy jupyterlab
Then activate the new environment:
Expand All @@ -52,15 +52,14 @@ or
mamba activate pyps
and install with pip. Note that PyQt6 is not yet available in conda repositories,
so we need to use the pyqt5 version:
and install with pip. As PyQt is already installed with mamba/conda, we will install **pypsbuilder** without UI framework:
pip install pypsbuilder[pyqt5]
pip install pypsbuilder
> [!NOTE]
> If you encounter errors during install, try to install without upgrading dependencies:
> ```
> pip install --no-deps pypsbuilder[pyqt5]
> pip install --no-deps pypsbuilder
> ```
#### Upgrade existing installation
Expand Down

0 comments on commit 35ae9da

Please sign in to comment.