-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb37aa0
commit 477875c
Showing
3 changed files
with
40 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
# Welcome to the source for my Advent of Code Solutions | ||
|
||
If you'd like to peruse this code along with my solution walkthroughs, then take a look [here](https://derailed-dash.github.io/Advent-of-Code/). | ||
|
||
## Setting Up Your Environment | ||
|
||
With Conda: | ||
|
||
```bash | ||
conda env list # see environments and current active env | ||
|
||
export AOC_ENV="aoc-conda-env" | ||
|
||
# Create and activate an environment | ||
conda create --name $AOC_ENV | ||
conda activate $AOC_ENV | ||
|
||
# Install some core packages | ||
# Before trying to run any Python code or Jupyter cells in this env | ||
conda install -y -c conda-forge python jupyter jupyterlab | ||
|
||
# Additional packages - or we could install these from (say) a Jupyter notebook | ||
conda install pandas hvplot mathjax matplotlib networkx numpy plotly scipy | ||
|
||
# Export the current environment config - for source control | ||
conda env export > $AOC_ENV.yml | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters