Managing Environments with Conda and pip
Published at April 25, 2021 · 4 min read
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....