Articles tagged "python3"
1 min readBeginner
python3 create new empty file
With python3 the best way to touch a file is by using the Path class from pathlib. Once you have an instance of Path (from pathlib import Path) you can use the touch method(): Path('empty_file').touch()
2 min readBeginner
Pillow: --enable-jpeg Requested but Not Found
Check here how to solve the error "ValueError: --enable-jpeg requested but jpeg not found, aborting." while installing Pillow with Python3