Skip to content

Commit

Permalink
adds necessary spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
billbrod committed Nov 7, 2024
1 parent 3f2065f commit 650171f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 36_ReproduciblePaper/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,10 @@ find path/to/dir/ -type f -name '*py' -exec grep --no-filename -e '^from' -e '^i
</code>
</pre>


#note: Finally, facilitate installing your code. List your direct dependecies in a requirement file, menaing the things you directly import and use. Do not pin specific python version; for more details on this check Sept sciware on pacakging. You can list your import in various way, here I added a one-linear command for that.


<ol start="6">
<li><strong>Containers?</strong></li>
<ul>
Expand All @@ -251,6 +253,7 @@ find path/to/dir/ -type f -name '*py' -exec grep --no-filename -e '^from' -e '^i
#note: You can also consider containers, like Docker or Singularity. Usually convenient when your package as complex dependency, like more than one programming language. Singularity may be a good idea since it makes your environment very easy to port on any
HPC syste. On the other hand, if your installation is easy enough (pure python, standard packages), conda enviroments may be sufficient.


## Provide Necessary Information

Write a `README` file which answers the following questions:
Expand Down

0 comments on commit 650171f

Please sign in to comment.