I want to run python scripts on a remote server. I put my code under a directory using FileZilla, and I connect to the server using PuTTY. When I run my scripts, I have a ModuleNotFound
error because I didn't install packages on the remote server. However, I'm not allowed to do a pip install
on the server.
So I thought about using a virtual environment to manage it. But how can I export the virtual environment on the remote server?
Or is there a better way to manage it?
Thank you