-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* finalize #192 * sphinx config updates - explicitly set language to english - removed non-existent _static directory entry * add conda installation docs - README: installation section added together with anaconda bacge - docs: describe conda and pip installation (together with a conda badge bar) - updated CHANGES (started new entry)
- Loading branch information
Showing
4 changed files
with
105 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,75 @@ | ||
Installing alchemlyb | ||
==================== | ||
|
||
**alchemlyb** is pure-Python, so it can be installed easily via ``pip``:: | ||
*alchemlyb* is available via the ``pip`` and ``conda`` package | ||
managers and can easily be installed with all its | ||
dependencies. Alternatively, it can also be directly installed from | ||
source | ||
|
||
pip install alchemlyb | ||
|
||
If you wish to install this in your user ``site-packages``, use the ``--user`` flag:: | ||
``conda`` installation | ||
---------------------- | ||
|
||
|install_with_conda| |anaconda_package| |platforms| |last_updated| | ||
|
||
|
||
The easiest way to keep track of all dependencies is to **install** | ||
*alchemlyb* as a `conda`_ package from the `conda-forge (alchemlyb)`_ | ||
channel :: | ||
|
||
conda install -c conda-forge alchemlyb | ||
|
||
|
||
You can later **update** your installation with :: | ||
|
||
conda update -c conda-forge alchemlyb | ||
|
||
|
||
``pip`` installation | ||
-------------------- | ||
|
||
**Install** via ``pip`` from `PyPi (alchemlyb)`_ :: | ||
|
||
pip install alchemlyb | ||
|
||
**Update** with :: | ||
|
||
pip install --update alchemlyb | ||
|
||
pip install --user alchemlyb | ||
|
||
|
||
Installing from source | ||
---------------------- | ||
|
||
from source. Clone the source from GitHub with:: | ||
To install from source, first clone the source code repository | ||
https://github.com/alchemistry/alchemlyb from GitHub with :: | ||
|
||
git clone https://github.com/alchemistry/alchemlyb.git | ||
|
||
then do:: | ||
and then install with ``pip`` :: | ||
|
||
cd alchemlyb | ||
pip install . | ||
|
||
If you wish to install this in your user ``site-packages``, use the ``--user`` flag:: | ||
|
||
pip install --user . | ||
|
||
.. _`PyPi (alchemlyb)`: https://pypi.org/project/alchemlyb/ | ||
.. _`conda`: https://conda.io/ | ||
.. _`conda-forge (alchemlyb)`: https://anaconda.org/conda-forge/alchemlyb | ||
|
||
.. |install_with_conda| image:: https://anaconda.org/conda-forge/alchemlyb/badges/installer/conda.svg | ||
:alt: install with conda | ||
:target: https://conda.anaconda.org/conda-forge | ||
|
||
.. |anaconda_package| image:: https://anaconda.org/conda-forge/alchemlyb/badges/version.svg | ||
:alt: anaconda package | ||
:target: https://anaconda.org/conda-forge/alchemlyb | ||
|
||
.. |platforms| image:: https://anaconda.org/conda-forge/alchemlyb/badges/platforms.svg | ||
:alt: platforms | ||
:target: https://anaconda.org/conda-forge/alchemlyb | ||
|
||
.. |last_updated| image:: https://anaconda.org/conda-forge/alchemlyb/badges/latest_release_date.svg | ||
:alt: last updated | ||
:target: https://anaconda.org/conda-forge/alchemlyb | ||
|