Skip to content

Commit a66206f

Browse files
committed
install.md: Added separate step for Psydac installation
1 parent c1685a4 commit a66206f

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

chapter1/install.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,21 @@ cd IGA-Python
1212
# Install required Python packages
1313
python3 -m venv iga-python-env
1414
source iga-python-env/bin/activate
15-
pip3 install -r requirements.txt
15+
pip3 install -r requirements_ntbk.txt
1616
```
1717

18-
2. Access [IGA-Python] examples through Jupyter notebook.
18+
2. Install Psydac. Skip this step if Psydac is already installed on your system.
19+
20+
```bash
21+
# Modify these variables if you're using your own psydac fork/branch
22+
PSYDAC_REMOTE="https://github.com/pyccel/psydac.git"
23+
BRANCH="devel"
24+
25+
# Install psydac
26+
pip install git+${PSYDAC_REMOTE}@${BRANCH}
27+
```
28+
29+
3. Access [IGA-Python] examples through Jupyter notebook.
1930

2031
```shell
2132
# Run this command under IGA-Python folder
@@ -46,4 +57,4 @@ jupyter notebook
4657

4758
**Congratulations!** You can now head over to the [Poisson example problem](poisson.ipynb) to get started.
4859

49-
[IGA-Python]: https://github.com/pyccel/IGA-Python.git
60+
[IGA-Python]: https://github.com/pyccel/IGA-Python.git

0 commit comments

Comments
 (0)