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
- Remove redundant `~proplot.rctools.use_fonts`, use ``rcParams['sans-serif']``
65
51
precedence instead (:pr:`95`).
66
-
- `~proplot.axes.Axes.dualx` and `~proplot.axes.Axes.dualx` no longer accept "scale-spec" arguments, must be a function, two functions, or an axis scale instance (:pr:`96`).
52
+
- `~proplot.axes.Axes.dualx` and `~proplot.axes.Axes.dualx` no longer accept "scale-spec" arguments.
53
+
Must be a function, two functions, or an axis scale instance (:pr:`96`).
Copy file name to clipboardExpand all lines: INSTALL.rst
+2-8Lines changed: 2 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,18 @@
1
1
Installation
2
2
============
3
3
4
-
ProPlot can be installed with `pip<https://pypi.org>`__ or `conda <https://anaconda-project.readthedocs.io/en/latest/>`__:
4
+
ProPlot is published on `PyPi<https://pypi.org/project/proplot/>`__ and `conda-forge<https://conda-forge.org>`__. It can be installed with ``pip`` or ``conda`` as follows:
5
5
6
6
.. code-block:: bash
7
7
8
8
pip install proplot
9
-
10
-
.. code-block:: bash
11
-
12
9
conda install -c conda-forge proplot
13
10
14
-
An existing installation of ProPlot can be upgraded to the latest version with:
11
+
Likewise, an existing installation of ProPlot can be upgraded to the latest version with:
ProPlot can be installed with `pip<https://pypi.org>`__ or `conda <https://anaconda-project.readthedocs.io/en/latest/>`__:
11
+
ProPlot is published on `PyPi<https://pypi.org/project/proplot/>`__ and `conda-forge<https://conda-forge.org>`__. It can be installed with ``pip`` or ``conda`` as follows:
12
12
13
13
.. code-block:: bash
14
14
15
15
pip install proplot
16
-
17
-
.. code-block:: bash
18
-
19
16
conda install -c conda-forge proplot
20
17
21
-
An existing installation of ProPlot can be upgraded to the latest version with:
18
+
Likewise, an existing installation of ProPlot can be upgraded to the latest version with:
22
19
23
20
.. code-block:: bash
24
21
25
22
pip install --upgrade proplot
26
-
27
-
.. code-block:: bash
28
-
29
23
conda upgrade proplot
30
24
31
-
32
25
If you used ``pip install git+https://github.com/lukelbd/proplot.git`` to install ProPlot before it was released on PyPi, you may need to run ``pip uninstall proplot`` before upgrading.
33
26
To install a development version of ProPlot, you can use this same method, or clone the repository and run ``pip install --upgrade .`` inside the ``proplot`` folder.
0 commit comments