排序
Django 2.2 Cheat Sheet (2020)
Django 2.2 Cheat Sheet (2020),Initialize a virtual environnement using venv: yourlaptop@laptop:~/some_path/ :$ python3 -m venv env Enter fullscreen mode Exit fullscreen mode Activa...
Best resources on Python packaging
Best resources on Python packaging ,Are you confused by the various names that float around the Python packaging ecosystem? Have you ever asked a colleague to help you with an inst...
Dependency management in Python
Dependency management in Python,There is always a good practice to keep track of your dependencies in a project, no matter programming language. This will make it much easier to sh...
[Python] Checking and updating new versions of pip packages and requirements.txt update
[Python] Checking and updating new versions of pip packages and requirements.txt update,Steps: Checking for new package versions: $ pip list --outdated Updating packages: $ pip ins...
Use pip packages in DaVinci Resolve scripts
Use pip packages in DaVinci Resolve scripts,As a content creator and a automation enthusiast, I've spent some time studying how to script my video editing workflow in DaVinci Resol...
if we compare Conda and Pip – what are the differences?
if we compare Conda and Pip - what are the differences?,Conda and Pip are two popular package managers used in Python development. While both are used to install and manage package...
Virtual environments: How to avoid Python dependency hell with venv and pip freeze
Virtual environments: How to avoid Python dependency hell with venv and pip freeze,As a web dev in the 2005, dependency management was one of the more challenging aspects of my rol...
Answer: What is the difference between pip and conda?
Answer: What is the difference between pip and conda?, answer re: What is the difference between pip and conda? Jan 8 '14 721 Quoting from the Conda blog: Having been involved in t...
The maze of Python dependency management
The maze of Python dependency management,For over 20 years, I've developed code for the JVM, first in Java, then in Kotlin. However, the JVM is not a silver bullet, e.g., in script...
Use pipenv to create a bug-free virtual environment
Use pipenv to create a bug-free virtual environment,Dependency bugs can be quite annoying. You have to keep upgrading and downgrading dependency versions in case of a conflict. Thi...
How to change an image with Python
How to change an image with Python,Today I would like to play a little bit with Python and Pillow library. I will test some possibilities of PIL. I open PyCharm and I create in a d...
Python: logging in colour
Python: logging in colour,If you use logging module, you should use helpful module for coloured command line. https://pypi.org/project/coloredlogs/ Install: pip install coloredlogs...