File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -78,14 +78,16 @@ To add "conda-forge" to the conda channels, run the following in a terminal. ::
78
78
We want to install our packages in a suitable conda environment.
79
79
The following creates and activates a new environment named ``diffpy.pdfgui_env `` ::
80
80
81
- conda create -n diffpy.pdfgui_env python=3
81
+ conda create -n diffpy.pdfgui_env diffpy.pdfgui
82
82
conda activate diffpy.pdfgui_env
83
83
84
- Then, to fully install `` diffpy.pdfgui `` in our active environment, run ::
84
+ To confirm that the installation was successful, type ::
85
85
86
- conda install diffpy.pdfgui
86
+ python -c "import diffpy.pdfgui; print(diffpy.pdfgui.__version__)"
87
87
88
- Another option is to use ``pip `` to download and install the latest release from
88
+ The output should print the latest version displayed on the badges above.
89
+
90
+ If the above does not work, you can use ``pip `` to download and install the latest release from
89
91
`Python Package Index <https://pypi.python.org >`_.
90
92
To install using ``pip `` into your ``diffpy.pdfgui_env `` environment, type ::
91
93
@@ -97,6 +99,11 @@ and run the following ::
97
99
98
100
pip install .
99
101
102
+ Getting Started
103
+ ---------------
104
+
105
+ You may consult our user manual in our `online website <https://www.diffpy.org/products/pdfgui.html >`_ under the Documentation and help section.
106
+
100
107
Support and Contribute
101
108
----------------------
102
109
You can’t perform that action at this time.
0 commit comments