Skip to content

Commit

Permalink
README fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrolexa committed Jan 27, 2025
1 parent 7223dc4 commit 7ff68a0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ Not that simplistic THERMOCALC front-end for constructing and visualizations of
It is strongly suggested to install **pypsbuilder** into separate environment. You can create
Python virtual environment. For Linux and macOS use:

python -m venv pyps
source pyps/bin/activate
python -m venv .venv
source .venv/bin/activate

for Windows use PowerShell:
for Windows use Command Prompt or PowerShell:

py -m venv pyps
pyps\Scripts\activate
python -m venv .venv
.venv\Scripts\activate

> [!NOTE]
> On Microsoft Windows, it may be required to enable the activate script by setting the execution policy for the user.
> On Microsoft Windows, it may be required to set the execution policy in PowerShell for the user.
> You can do this by issuing the following PowerShell command:
> ```
> PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
> ```
and install **pypsbuilder** using pip within the environment. **You should choose the UI framework using option** `pyqt5` **or** `pyqt6`:
Expand Down

0 comments on commit 7ff68a0

Please sign in to comment.