RunpodR
Runpod2y ago
10 replies
Daan

install in network volume

Hello, I want to install some dependencies, I run "pip install -r requirements.txt" in the directory where my network volume is mounted. However, I notice that these are not installed on the newtork volume, but on the container disk (so not permanently). How can I ensure that this is installed on the network volume and therefore preserved?
Solution
Or in your case:
pip install --no-cache-dir -r requirements.txt
Was this page helpful?