Changing windows’ background/wallpapers from a folder with a set of images is a function needed if wallpaper images are pushed by the organization as a service. Sometimes a clean background is required and this is a quick step-by-step guide. My own preference is a black image; with a clean left side and some lighting source on the right side.

- Open task schedular in window
Shutdown automatically
Wakeup machine
Conda and PIP
Packages list with versions saving using Pip
pip list
# shows the packages
pip freeze > requirements.txt
# save all packages
To create a virtual environment with the above packages
python3 -m venv myEnv
source myEnv/bin/activate
pip install -r requirements.txt
Packages list with versions saving using Conda
conda list
# shows packages list
# save all packages either in txt
or yaml
file. yaml
is better and commonly used
conda list -e requirements.txt
conda env export > myEnv.yml
To create a virtual environment with the above packages
conda create — name myEnv— file requirements.txt
or
conda env create -f myEnv.yml