Conda reminders

May 24, 2016    python    commandline   

Note to Self

Environment commands

Let’s say we want an environment named jjf.

  • create new: conda create --name jjf STARTERPACKAGE
  • turn environment on: activate jjf
  • turn off: deactivate
  • list all environments: conda info --envs or conda env list
  • delete environment: conda remove --name jjf --all
  • install: conda install --name jjf beautiful-soup
    • or we can do it from inside the environment: conda install beautiful-soup
    • or from another source: conda install -c pandas bottleneck which installs bottleneck from the pandas channel.