My Python Development Environment, 2020 Edition
jacobian.org
My Python Development Environment, 2020 Edition
1–10 of 241 posts
Re: My Python Development Environment, 2020 Edition
#2Re: My Python Development Environment, 2020 Edition
#3This is so painful to see compared to using conda.
2. Conda is not used as much as you might think... it's really only used within the data science community.
Re: My Python Development Environment, 2020 Edition
#4This is so painful to see compared to using conda.
Re: My Python Development Environment, 2020 Edition
#5This is so painful to see compared to using conda.
Re: My Python Development Environment, 2020 Edition
#6Re: My Python Development Environment, 2020 Edition
#7Why pipx vs just using pip?
This difference is important due to dependencies- if you have two different CLI tools you want to install but they have conflicting dependencies then pip is going to put at least one of them into an unusable state, while pipx will allow them to both coexist on the same system.
Re: My Python Development Environment, 2020 Edition
#8This is so painful to see compared to using conda.
1. The author of this post helped to create the Django framework and runs a successful Python consultancy. 2. Conda is not used as much as you might think... it's really only used within the data science community.
Re: My Python Development Environment, 2020 Edition
#9This is so painful to see compared to using conda.
Re: My Python Development Environment, 2020 Edition
#10Earlier quoted context omitted.
1. The author of this post helped to create the Django framework and runs a successful Python consultancy. 2. Conda is not used as much as you might think... it's really only used within the data science community.
Being in the data science community myself, I prefer straight venv + pip to conda. It’s simpler for me to manage errors. I only use conda when I have to.