AssetsWiz
7/1/2025, 9:42:26 PM
No.936508720
>>936508670
This will make your active directory the folder that everything is stored in. You're going to need to remember this location because you're going to need to go to this folder any time you want to start up your AI.
So if, as I mentioned earlier, you wanted to store it in a folder called AI, you would first need to run cd ai then cd comfyui, or you should be able to run cd ai/comfyui
OK, I'm going to skip some of the screenshots for the command terminal stuff.
Next you run:
python -m venv venv
This creates a virtual environment (a temporary computer that exists inside of your computer).
Now the commands get different from Linux and Windows. Windows Command:
venv\Scripts\activate.bat
Linux Command:
source venv/bin/activate
This actually starts up the virtual environment and is a command you'll need to run any time you want to start up your AI
This will make your active directory the folder that everything is stored in. You're going to need to remember this location because you're going to need to go to this folder any time you want to start up your AI.
So if, as I mentioned earlier, you wanted to store it in a folder called AI, you would first need to run cd ai then cd comfyui, or you should be able to run cd ai/comfyui
OK, I'm going to skip some of the screenshots for the command terminal stuff.
Next you run:
python -m venv venv
This creates a virtual environment (a temporary computer that exists inside of your computer).
Now the commands get different from Linux and Windows. Windows Command:
venv\Scripts\activate.bat
Linux Command:
source venv/bin/activate
This actually starts up the virtual environment and is a command you'll need to run any time you want to start up your AI