@@ -71,20 +71,18 @@ To add "conda-forge" to the conda channels, run the following in a terminal. ::
7171We want to install our packages in a suitable conda environment.
7272The following creates and activates a new environment named ``diffpy.fourigui_env `` ::
7373
74- conda create -n diffpy.fourigui_env python=3
74+ conda create -n diffpy.fourigui_env diffpy.fourigui
7575 conda activate diffpy.fourigui_env
7676
77- Then, to fully install `` diffpy.fourigui `` in our active environment, run ::
77+ To confirm that the installation was successful, type ::
7878
79- conda install diffpy.fourigui
79+ python -c "import diffpy.fourigui; print(diffpy.fourigui.__version__)"
8080
81- Another option is to use ``pip `` to download and install the latest release from
82- `Python Package Index <https://pypi.python.org >`_.
83- To install using ``pip `` into your ``diffpy.fourigui_env `` environment, we will also have to install dependencies ::
84-
85- pip install -r https://raw.githubusercontent.com/diffpy/diffpy.fourigui/main/requirements/run.txt
81+ The output should print the latest version displayed on the badges above.
8682
87- and then install the package ::
83+ If the above does not work, you can use ``pip `` to download and install the latest release from
84+ `Python Package Index <https://pypi.python.org >`_.
85+ To install using ``pip `` into your ``diffpy.fourigui_env `` environment, type ::
8886
8987 pip install diffpy.fourigui
9088
@@ -94,6 +92,11 @@ and run the following ::
9492
9593 pip install .
9694
95+ Getting Started
96+ ---------------
97+
98+ You may consult our `online documentation <https://diffpy.github.io/diffpy.fourigui >`_ for tutorials and API references.
99+
97100Support and Contribute
98101----------------------
99102
0 commit comments