@@ -60,14 +60,10 @@ using the conda package manager in the
60
60
To install the most recent stable release of pvlib-python in a
61
61
non-editable way, use one of the following commands to install pvlib-python::
62
62
63
- # get the package from the pvlib conda channel
64
- # best option for installing pvlib in the base Anaconda distribution
65
- conda install -c pvlib pvlib
66
-
67
63
# get the package from the conda-forge conda channel
68
- # best option if using pvlib.forecast module
69
64
# strongly recommend installing in a separate conda env as shown below
70
- conda create -n pvlib -c conda-forge pvlib-python; conda activate pvlib
65
+ # note: both "pvlib" and "pvlib-python" work on conda-forge
66
+ conda create -n pvlib -c conda-forge pvlib; conda activate pvlib
71
67
72
68
# get the package from the Python Package Index
73
69
# best option if you know what you are doing
@@ -84,7 +80,7 @@ non-editable way, use one of the following commands to install pvlib-python::
84
80
`ModuleNotFoundError: No module named 'netCDF4' `
85
81
you can either install pvlib with all optional dependencies using
86
82
`pip install pvlib[optional] `, or you can install pvlib from conda-forge
87
- `conda create -n pvlib -c conda-forge pvlib-python ; conda activate pvlib `.
83
+ `conda create -n pvlib -c conda-forge pvlib; conda activate pvlib `.
88
84
89
85
If your system complains that you don't have access privileges or asks
90
86
for a password then you're probably trying to install pvlib into your
0 commit comments