From c6ec64e8fb3b53a6e0c34e6a9567d1f9b7435a65 Mon Sep 17 00:00:00 2001 From: Niall Keleher Date: Thu, 11 Jul 2024 12:44:54 -0700 Subject: [PATCH] removing test changes --- _quarto.yml | 2 -- docs/guides/mdtestguide.md | 37 ------------------------------------- 2 files changed, 39 deletions(-) delete mode 100644 docs/guides/mdtestguide.md diff --git a/_quarto.yml b/_quarto.yml index 1d50f15..aa96c26 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -39,8 +39,6 @@ website: text: Code Review - href: ./docs/guides/pre_commit_hooks.md text: pre-commit - - href: ./docs/guides/mdtestguide.md - text: Test Label - text: Software menu: diff --git a/docs/guides/mdtestguide.md b/docs/guides/mdtestguide.md deleted file mode 100644 index 0b0a81a..0000000 --- a/docs/guides/mdtestguide.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Virtual Environments ---- - -We encourage the use of virtual environments when working on shared projects. Virtual -environments allow you to create an isolated environment for your project, which can -help prevent conflicts between different projects that may require different versions of -the same package. - -## Python Virtual Environments - -We recommend using `rye` to manage Python virtual environments as it provides an -overarching framework for managing Python installations and virtual environments. See -information on `rye` in the [Rye documentation](https://rye.astral.sh/guide/). - -Another option for managing virtual environments is to use `pixi`. See information on -`pixi` in the [Pixi documentation](https://pixi.sh/latest/). - -## R Virtual Environments - -R virtual environments can be created using the `renv` package. See -[documentation](https://rstudio.github.io/renv/articles/renv.html) for more information -about how to use `renv`. - -## Docker - -[Docker](https://docs.docker.com/get-started/overview/) is a tool that allows you to -create, deploy, and run applications using containers. In some instances, it may be more -appropriate to use Docker containers to manage your project environment, especially when -there is a project environment that needs to be deployed to cloud computing services. - -## Learning Resources - -- [A Complete Guide to Python Virtual Environments](https://www.dataquest.io/blog/a-complete-guide-to-python-virtual-environments/) -- [Real Python, Python Virtual Environments](https://realpython.com/python-virtual-environments-a-primer/) -- [Python Virtual Environments](https://docs.python.org/3/tutorial/venv.html) -- [R Virtual Environments](https://rstudio.github.io/renv/articles/renv.html)