936 B
936 B
Frequently Asked Questions
How do I put files into nginx container?
-
Retrieve the files in required folder structure.
-
Copy them into nginx image.
docker \ cp ./ kemono-nginx:/storage
-
Add required permissions to that folder.
docker \ exec kemono-nginx \ chown --recursive \ nginx /storage
How Do I Install Python 3.12 on Ubuntu 22?
Through a PPA (Personal Package Archives).
-
Install required tooling and add the PPA:
sudo apt install --assume-yes software-properties-common sudo add-apt-repository ppa:deadsnakes/ppa
-
Update local
apt
listing and install required python dependencies:sudo apt update sudo apt install \ python3.12 \ python3.12-dev \ python3.12-distutils
-
Confirm python 3.12 is installed
which python3.12