[Fixed]-How to move a python application to another folder in server without damaging it?

1👍

Firstly, none of your application files should be in /var/www/html. That’s for documents served directly by the webserver, not for code.

To answer your question though, if you want to modify a project you should fork it on github, make your changes there, and install from the forked repo in pip.

Leave a comment