EverythingIsAFont / install.sh
taellinglin's picture
Upload 61 files
9dce563 verified
raw
history blame contribute delete
204 Bytes
#!/bin/bash
# Create a virtual environment
python -m venv .pytorchenv
# Activate the virtual environment
source .pytorchenv/bin/activate
# Install required Python packages
pip install -r requirements.txt