To display the running time of the Linux system in a human-readable format, you can use the following command.
uptime -p
To kill a process by its PID, first use htop
to obtain the PID. (ref)
kill -9 PID
To obtain an IPv4 address, if the IPv4 address is unavailable, run the following code :
dhclient -v
To use conda
to create new environment with a specific name and Python version, run the following code:
conda create -n py3.10 python==3.10
To import a file from another directory in python, using the following approach: Suppose you have two folders at the same level:
/project/some_folder/some_file.py
/project/another_floder/another.py
You can make one module visible to the other using the following code:
import sys
sys.path.append('../')
To resolve the issue where the Visual Studio Code terminal shows multiple Conda environments on the server, follows these steps:
(py3.10)(base)future@lif323:~/work$
- Delete the
~/.vscode-server
directory on the server. - Connect to the server again.