Hi,
I am new to Sepal, trying to setup my workspace on the platform. So maybe the answer to my questions is more related to the approach I am following than to debugging.
For my project, I have created a dedicated folder and set up and activated a python virtual environment, with following commands in Sepal terminal:
pip install virtualenv
mkdir my_project
cd my_project
python3.8 -m venv env
source env/bin/activate
I have then installed using pip a series of packages, including jupyter notebook. Since there is no browser, I assume I need to connect with SSH to Sepal (remote server) from my laptop (local machine), to be able to run jupyter notebook --no-browser.
I fetched the IP address of the remote server using the command hostname -I. When I try to connect to it from my local machine using the command ssh my_username@IP_address, I get the following error:
ssh: connect to host IP_address port 22: Connection timed out
Thanks in advance for the assistance !
Cheers,
Tim