AssetsWiz
7/6/2025, 1:43:29 AM
No.936693916
>>936693906
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
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