Skip to content

Commit

Permalink
Update of requirements
Browse files Browse the repository at this point in the history
Update the list of required packages
  • Loading branch information
cheritier committed Jul 31, 2024
1 parent 858f2da commit 9255731
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ mpmath => arithmetic with arbitrary precision
jsonpickle => json files encoding
aotools => zernike modes and functionalities for atmosphere computation
numba => required in aotools
numexpr => optimized maths operations
psutil => access system info
mpmath => real and complex floating-point arithmetic with arbitrary precision
tqdm => loading bar
```
If GPU computation is available:
```
Expand Down Expand Up @@ -54,7 +58,7 @@ source ./venv/bin/activate
# or
# Windows PowerShell
.\venv\Scripts\Activate.ps1
.\venv\Scripts\activate
```

After the environment is set up and activated, this package can then be easily installed. Anytime you wish to use this
Expand Down
11 changes: 11 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,14 @@ scikit_image == 0.18.3 ; python_version >= "3.7"
scipy <= 1.5.4 ; python_version == "3.6"
scipy <= 1.7.3 ; python_version == "3.7"
scipy == 1.9.3 ; python_version >= "3.8"
numexpr == 2.69 ; python_version <= "3.4"
numexpr == 2.7.3 ; python_version <= "3.5"
numexpr == 2.8.1 ; python_version <= "3.6"
numexpr == 2.8.4 ; python_version >= "3.7"
tqdm == 3.71 ; python_version == "3.5"
tqdm == 4.64.1 ; python_version == "3.6"
tqdm == 4.66.4 ; python_version > "3.6"
psutil = 5.91 ; python_version <= 3.5
psutil = 5.96 ; python_version > 3.5
mpmath

0 comments on commit 9255731

Please sign in to comment.