You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user/requirements.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,6 @@ Python Version
8
8
--------------
9
9
10
10
RocketPy supports Python 3.7 and above.
11
-
Support for Python 3.11 is still limited by some dependencies.
12
11
Sorry, there are currently no plans to support earlier versions.
13
12
If you really need to run RocketPy on Python 3.6 or earlier, feel free to submit an issue and we will see what we can do!
14
13
@@ -21,18 +20,19 @@ The following packages are needed in order to run RocketPy:
21
20
- Numpy >= 1.0
22
21
- Scipy >= 1.0
23
22
- Matplotlib >= 3.0
24
-
- netCDF4 >= 1.4
23
+
- netCDF4 >= 1.4, < 1.6 for Python 3.7+, netCDF4 >= 1.6.2 for Python 3.11
25
24
- windrose >= 1.6.8
26
25
- requests
27
26
- pytz
28
27
- simplekml
29
28
- ipywidgets >= 7.6.3
30
29
- jsonpickle
31
30
32
-
33
31
All of these packages, are automatically installed when RocketPy is installed using either ``pip`` or ``conda``.
34
32
However, in case the user wants to install these packages manually, they can do so by following the instructions bellow.
35
33
34
+
Note: Google Colab and netCDF4 don't play well together for netCDF4 >= 1.6 (see `this issue <https://github.com/Unidata/netcdf4-python/issues/1179>`_). If you are using Google Colab, you should install netCDF4 < 1.6 or use `condacolab <https://github.com/conda-incubator/condacolab>`_) to install netCDF4 >= 1.6.
35
+
36
36
Installing Required Packages Using ``pip``
37
37
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
38
38
@@ -43,7 +43,7 @@ The packages needed can be installed via ``pip`` by running the following lines
43
43
pip install "numpy>=1.0"
44
44
pip install "scipy>=1.0"
45
45
pip install "matplotlib>=3.0"
46
-
pip install "netCDF4>=1.4"
46
+
pip install "netCDF4>=1.6.2"
47
47
pip install "windrose >= 1.6.8"
48
48
pip install "ipywidgets>=7.6.3"
49
49
pip install requests
@@ -61,7 +61,7 @@ To update Scipy and install netCDF4 using Conda, the following code is used:
0 commit comments