Skip to content

Commit

Permalink
Simplified Psydac installation
Browse files Browse the repository at this point in the history
  • Loading branch information
kvrigor committed Nov 27, 2024
1 parent c4b0a9f commit 75060e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
14 changes: 4 additions & 10 deletions chapter1/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,17 @@ It is recommanded to use a virtual environement.

```shell
# create a virtual environement
python3 -m venv .iga-python
python3 -m venv iga-python-env

# activate this environement using
source .iga-python/bin/activate
source iga-python-env/bin/activate
```

Then install dependencies using

```shell
pip3 install wheel
pip3 install numpy
pip3 install pyccel
pip3 install ipykernel
pip3 install git+https://github.com/pyccel/sympde.git
pip3 install git+https://github.com/pyccel/gelato.git
pip3 install git+https://github.com/pyccel/psydac.git
pip3 install git+https://github.com/girving/igakit.git
pip3 install 'psydac[extra] @ git+https://github.com/pyccel/psydac.git@devel#egg=psydac'
pip3 install notebook
```

Adding the virtual environement to Jupyter notebook, can be done using
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ sphinx-proof
matplotlib
pyccel
ipykernel
git+https://github.com/pyccel/psydac.git
psydac[extra] @ git+https://github.com/pyccel/psydac.git@devel#egg=psydac

0 comments on commit 75060e4

Please sign in to comment.