Welcome to RAGE Uday Kiran’s Lab
Contents:
1. Accessing the Lab Infrastructure
2. Tutorials
- Linux
- PostGres
-
Jupyter Notebook
- Google Colab
3. Server administration
-
Topics: Installation of GUI, Anti-virus, Remote Desktop, Prevent Network Idle Sleep, and Installation of Tex Live, NPM, and Node JS.
-
Setting up the Jupyter Hub for Machine Learning
Topics: Installation of R, Conda, Setting up an environment, installation of JupyterHub and its add ons.
-
Installing packages and starting Jupyter Hub
#INSTALLING A PYTHON PACKAGE su - jupyter conda activate jupyterHub pip3 install <packageName> #pip3 install pami #STARTING JUPYTERHUB sudo ls nohup sudo ./anaconda3/envs/jupyterHub/bin/jupyterhub -f ./jupyterhub_config.py &
-
Installation and Setting up of PostGres and PostGIS in Ubuntu Server
Topics: Installation of PostGres and PostGIS, Starting the server, and enabling remote connection.
-
Creating users and giving database access
Topics: Creating users, super users, and granting database access.
-
Topics: Setting up of LDAP client
-
Creating a python repository in PYPI
Topics: Installing necessary packages, writing codes, and running them.
-
Updating packages in Conda
conda update --name base conda conda activate environmentName #conda activate jupyterHub conda update all -y #to update all packages in an environment #If you get any eror conda update packageName -y #conda update notebook numpy pandas scikit-learn -y conda update conda #to update conda #updating all python packages using pip pip --disable-pip-version-check list --outdated --format=json | python -c "import json, sys; print('\n'.join([x['name'] for x in json.load(sys.stdin)]))" | xargs -n1 pip install -U
-
Topics: Installing geoAnalytics package