File size: 204 Bytes
9dce563
 
 
 
 
 
 
1
2
3
4
5
6
7
8
#!/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