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
Copy file name to clipboardExpand all lines: README.md
+12-6Lines changed: 12 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,12 @@ Alternative software for `miniforge`:
19
19
20
20
The python_github_tutorial package dependencies can be installed via conda, and this package tagged in conda via pip install:
21
21
22
+
To perform the python_github_tutorial package build, please run the following commands
23
+
from the ``<YOUR_FILE_PATH/python_github_tutorial`` directory.
24
+
22
25
Create and install conda package:
23
26
24
-
Change to the directory with the "environment.yml" file -> "<YOUR_FILE_PATH/python_github_tutorial>"
27
+
Change to the directory
25
28
26
29
`cd python_github_tutorial`
27
30
@@ -42,9 +45,9 @@ Note: If you update the conda package, you may have to redo the pip install. Wi
42
45
43
46
## Run the example
44
47
45
-
This is an example of the supplimentary functions in the utils directory (python_github_tutorial/utils) and the main function in the main_functions directory (python_github_tutorial/main_functions).
48
+
This is an example of the supplimentary functions in the utils directory (``<YOUR_FILE_PATH/python_github_tutorial/python_github_tutorial/utils``) and the main function in the main_functions directory (``<YOUR_FILE_PATH/python_github_tutorial/python_github_tutorial/main_functions``).
46
49
47
-
The example is located here 'examples_to_run/examples.py'. The instructions to run it are provided below:
50
+
The example is located here ``<YOUR_FILE_PATH/python_github_tutorial/examples_to_run``. The instructions to run it are provided below:
48
51
49
52
`cd examples_to_run`
50
53
@@ -64,7 +67,7 @@ The unit tests via ``pytest`` ensure that the code is build properly, running co
64
67
accurate results.
65
68
66
69
To perform these tests (unit tests) for the python_github_tutorial package, please run the following commands
67
-
from the ``python_github_tutorial/tests`` directory:
70
+
from the ``<YOUR_FILE_PATH/python_github_tutorial/python_github_tutorial/tests`` directory:
68
71
69
72
Run all the tests:
70
73
@@ -88,14 +91,17 @@ Run individual test on 'test_main_functions.py':
88
91
89
92
Building these HTML files locally via sphinx, which will allow you to access them with your
90
93
local internet browsing application or HTML viewer (chrome, safari, VScode, etc.).
91
-
The HTML files will be located in the ``docs/_build/html`` directory after they are built.
94
+
The HTML files will be located in the ``<YOUR_FILE_PATH/python_github_tutorial/docs/_build/html`` directory after they are built.
92
95
93
96
The python_github_tutorial utilizes [sphinx](https://www.sphinx-doc.org/en/master/index.html) to construct the documentation.
94
97
The user can build the documentation locally by executing the following command from the ``docs`` directory:
95
98
99
+
To perform the documents (docs) build for the python_github_tutorial package, please run the following commands
100
+
from the ``<YOUR_FILE_PATH/python_github_tutorial/docs`` directory:
0 commit comments