I didn't know how to edit that so, here's more detail for you people to help me out 🙂
1) I deleted the www website which was PHP by default then made another one in python 3.10
2) I enabled the use of my own software - Binexec.
3) "where I had the first issue", Couldn't $ cd /usr/home/LOGIN/.virtualenvs
, they say that it's not a directory.
4) However, I created the folder from the control panel.
5) I created a VEnv using :
$ cd /usr/home/LOGIN/.virtualenvs
$ virtualenv ENVNAME
6) I activated it using $ source /usr/home/LOGIN/.virtualenvs/environment_name/bin/activate
7) I created a python file that contains a basic http server using http.server library.
8) the line I get the error at :
>>>server = HTTPServer(("0.0.0.0",8080),Handler) ; server.serve_forever()
I would appreciate a detailed solution and thank you guys <3