文章

--xformers --no-half-vae --api --share --listen --enable-insecure-extension-access --medvram

--xformers --no-half-vae --api --share --listen  --enable-insecure-extension-access --ckpt "......./pixar 1.2.safetensors"

google cloud create conda env with python 3.10.6

 conda update conda conda create -n "env3.10.6" python=3.10.6 source activate "env3.10.6" echo 'conda activate env3.10.6' >> ~/.bashrc

no nvidia found

 pip install torch==1.13.1+cpu torchvision==0.14.1+cpu -f https://download.pytorch.org/whl/torch_stable.html

ERROR: Cannot activate python venv, aborting..., even when python3-venv is installed

 python3 -m venv venv/ --without-pip source venv/bin/activate sudo apt install python3.10-venv ~/Desktop/Auto1111/stable-diffusion-webui$ sudo python3 -m venv venv/ run the bash bash webui.sh

Alpine VirtualBox shared folders

  3.11 and newer Enable the Community repo in /etc/apk/repositories then: Create a mount point and install libraries mkdir -p /mnt/shared apk add virtualbox-guest-additions linux-virt reboot Then mount the folder modprobe -a vboxsf mount -t vboxsf vbox_shared /mnt/shared vbox_shared is the 'Folder Name' you decided in the virtualbox gui

Trash location of PCManFM(lxde file manager)

 PCManFM's Trash  It stores the files in the FreeDesktop standard location: ~/.local/share/Trash/files =============================== Clean All files and info in trash: rm -r ~/.local/share/Trash/*

ubuntu install node.js 16.x in 1 command

 apt update && apt -y install curl && curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs && apt-get install -y gcc g++ make