This Plonk tutorial was written for Plonk v0.3.0. Parts may no longer work for later versions of Plonk. Please see the documentation at https://plonk.readthedocs.io/ for current documentation and examples.
Last active
September 5, 2020 00:38
-
-
Save dmentipl/a8eaddcee9755fd4b5a60128ae97e2b0 to your computer and use it in GitHub Desktop.
Plonk tutorial for the 3rd Phantom + MCFOST users workshop, Monash University, Feb 25, 2020 -- https://phantomsph.bitbucket.io/workshop2020
In general, I recommend setting conda-forge as the main channel from which to install all packages in all environments. The following commands will do this:
conda config --set channel_priority true
conda config --add channels conda-forge
Now, create a new conda environment to install Plonk in:
conda create --name myenv
The environment name is myenv
. Feel free to change it as you like.
Now activate the environment:
conda activate myenv
You can install Plonk in the environment with:
conda install plonk
Don't forget that if you open a new terminal or launch Jupyter lab you must do it after activating the environment in which you installed Plonk.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment