Questions and Answers

How solve the server certificate verification failed problem on a ubuntu VM ?

export GIT_SSL_NO_VERIFY=1
#or
git config --global http.sslverify false

How solve the hostnanme on a ubuntu VM ?

cat /etc/host nano /etc/hostname

How to install Python-Irodsclient ?

git clone https://github.com/irods/python-irodsclient
cd python-irodsclient; python setup.py install --prefix=$CONDA_PREFIX; cd ..

How launch a Notebook Server on a cloud VM ?

jupyter notebook --no-browser --ip=<local_ip> &
disown