DEV Community

Cover image for Managing Environments with Conda and pip
Niklas Tiede
Niklas Tiede

Posted on • Updated on • Originally published at the-coding-lab.com

Managing Environments with Conda and pip

Heya fellows,

When dealing with dependencies the Python world offers several tools to manage these. It's important to deal with Python as well as non-Python packages, to handle different Python versions and to ensure a good isolation. Tools like pipenv and poetry are pretty popular for these purposes but conda has proven to be the tool of choice within the scientific community over the years. 💪

Conda im combination with pip is what I like to use on a daily basis. Conda handles non-Python code especially well and therefore libraries like RDKit (cheminformatics library) are only available in the conda ecosystem. It's a great resource for data scientific work.

Here I wanna show you some basic commands of conda and pip I'm using to manage my dependencies.


At first you have to install Anaconda on your system if it's not already installed. In the following we will install pandas, matplotlib and jupyter lab so we have a nice environment for data scientific work.

Creating Environments and Installing Packages

At first we create our new environment:

$ conda create -n my-new-environment python=3.8
Enter fullscreen mode Exit fullscreen mode

Here we name the environment my-new-environment and use Python version 3.8. Conda will collect package metadata and create our new environment. By activating our new environment...

$ conda activate my-new-environment
Enter fullscreen mode Exit fullscreen mode

...we leave condas base environment and enter our newly created environment. Then we can install the dependencies we need.

$ conda install matplotlib pandas 
Enter fullscreen mode Exit fullscreen mode

Jupyter lab is offered via the conda-forge channel, a popular, well-maintained channel, not via the default channel. That's why we have to provide the channels name:

$ conda install -c conda-forge jupyterlab
Enter fullscreen mode Exit fullscreen mode

Or we add the channel right away to condas configuration so that the conda-forge repo is searched on top of the default channel when installing packages. Conda-forge is a pretty popular and well-maintained channel and therefore we will add it here permanently.

$ conda config --add channels conda-forge
Enter fullscreen mode Exit fullscreen mode

You can see that conda-forge was added to your ~./condarc file.

ssl_verify: true
channels:
  - conda-forge
  - defaults
Enter fullscreen mode Exit fullscreen mode

Some of condas commands are similar those of pip. To list the packages within your current environment we type:

$ conda list
Enter fullscreen mode Exit fullscreen mode

If you want to search through all anaconda repositories for a package, then use this command:

$ anaconda search <package_name>
Enter fullscreen mode Exit fullscreen mode

Managing Multiple Environments

But how do we deal with multiple environments? Let's clone the environment we created in the first place:

$ conda create --clone my-new-environment --name my-clone
Enter fullscreen mode Exit fullscreen mode

When typing conda env list we see the two environments we created are next to the base environment.

$ conda env list

# conda environments:
#
base                   /home/niklas/anaconda3
my-new-environment     /home/niklas/anaconda3/envs/my-new-environment
my-clone               /home/niklas/anaconda3/envs/my-clone
Enter fullscreen mode Exit fullscreen mode

We can switch the environment by just activating the new environment.

$ conda activate my-clone
Enter fullscreen mode Exit fullscreen mode

To check which environment is currently active we can type conda info. BTW: Frameworks like Oh-My-Zsh show the active environment within the terminal which makes life easier.

Ok, now lets clean up things and delete the cloned environment.

$ conda deactivate 
$ conda env remove --name my-clone
Enter fullscreen mode Exit fullscreen mode

Conda caches all installed packages within the 'pkgs' directory, so from time to time I clean it up to free up space.

$ conda clean -h
Enter fullscreen mode Exit fullscreen mode

Sharing Environments

Developers are no one-man armies. We share our work to other developers/engineers and they should be able to reproduce our work. Conda is able to export the environments dependencies as a yaml file and recreate the environment from this file.

$ conda env export --name my-new-environment > environment.yaml
Enter fullscreen mode Exit fullscreen mode

Now all dependencies can be found in the environment.yaml file. This file can be used by someone else to recreate the environment. When no --file flag value is provided conda searches for a environment.yaml file in the current working directory and tries to recreate the environment from this file.

$ conda env create              
$ conda env create --file environment-dev.yaml   
Enter fullscreen mode Exit fullscreen mode

But don't feel forced to only use conda packages when managing dependencies with conda! I also use conda when managing projects where I install only dependencies from pypi.org. Just as reminder here are the commands for storing/recreating pip dependencies.

$ pip freeze > requirements.txt   
$ pip install -r requirements.txt
Enter fullscreen mode Exit fullscreen mode

Conda makes switching between different environments so easy and you have always access to conda packages. Unfortunately, condas speed for creating environments and installing conda packages is not outstanding but nonetheless it's good enough that I prefer it over other dependancy manager 🙂. If you want to see how to upload a project to Anaconda, take a look into my article 'Publishing at Anaconda'.

Ok that's it, I hope you I could arouse your curiosity for Anaconda. Thanks for your attention and have a nice day! 🙂


All conda commands I'm using can be found in my Linux Cheat Sheet.

Top comments (0)