ssh csc309@192.168.58.128
password = pass (Note you can setup ssh keys https://www.digitalocean.com/community/tutorials/how-to-set-up-ssh-keys-2 if you want to)
scp -r csc309@192.168.58.128:{path in remote} {path to local file}
scp -r {path to local file} csc309@192.168.58.128:{path in remote}
Even better, use VSCode Remote SSH/Equivalent extension/feature of your IDEs to remotely mount the file
pip install virtualenv
virtualenv {envname}
source {envname}/bin/activate
pip install django
- make sure you are currently at the same directory that you ran virtualenv in)
- You might not be able to call
virtualenv {envname}directly, instead usepython3 -m virtualenv {envname}