python source code to print list of all subfolder and files
for path, subdirs, files in os.walk('/your_folder/'):
for name in files:
print(os.path.join(path, name))
The study blog from marearts.com
Computer Vision & Machine Learning Research Laboratory
Following below step:
-------------
wget https://www.python.org/ftp/python/3.8.3/Python-3.8.3.tgz
tar xvf Python-3.8.3.tgz
cd Python-3.8*/
./configure --enable-optimizations
make altinstall
-------------
I suppose you already installed docker.
1. pull Amazon Linux image
> docker pull amazonlinux
* https://hub.docker.com/_/amazonlinux
2. run container and enter the os
> docker run -it amazonlinux /bin/bash
3. check version
bash-4.2# > cat /etc/os-releaseThank you.
🙇🏻♂️