Linux

How to build your own Machine Learning Server

Buy a PC with Nvidia GPU Install Liunx Get connect to Server add a sudo user ssh connection get internet connection get IP address install ssh in the server generate rsa key pair send public to server config ssh file install dependencies Buy a PC with Nvidia GPU For CPU, you can choose AMD For GPU, Nvidia GPU is your only choice Notice that the bottleneck of your machine could most likely be the GPU memory.

GNN Environment Configuration

Generally, NEVER use pip install something !!! This may lead to fatal result on your environment. You have to specify which verison of something you intend to install. From 0 to 100 Here is a stable version of Graph Research Environment provided by Dr.

Linux Commands: File Management

Delete File or Directory # remove file rm filename # multiple rm filename1 filename2 filename3 # remove write-protected file with -f: force rm -f filenma # remove directory (-r means recursive;) rm -r dirname # remove multiple rm -r dirname1 dirname2 dirname3