Nextcloud is a suite of client-server software for creating and using file hosting services. Nextcloud is free and open-source, which means that anyone is allowed to install and operate it on their own private server devices. Nextcloud application functionally is similar to Dropbox, Office 365 or Google Drive, but can be used on home-local […]
How To Install NGINX AS A Reverse Proxy For Apache On Ubuntu 16.04
https://www.howtoforge.com/tutorial/how-to-install-nginx-as-reverse-proxy-for-apache-on-ubuntu-16-04/ https://devops.profitbricks.com/tutorials/configure-nginx-as-a-reverse-proxy-for-apache-on-ubuntu-1604/ 1. Configuring Apache $ sudo nano /etc/apache2/ports.conf modify the VirtualHost and Listen lines for port 80 to use port 8000 (or any other port number you would like to use): # If you just change the port or add more ports here, you will likely also # have to change the VirtualHost statement […]
Python Libraries
1 https://www.upwork.com/hiring/data/15-python-libraries-data-science/ Basic Libraries for Data Science These are the basic libraries that transform Python from a general purpose programming language into a powerful and robust tool for data analysis and visualization. Sometimes called the SciPy Stack, they’re the foundation that the more specialized tools are built on. NumPy is the foundational library for scientific […]
How To Install Python Data Science Stack
http://datascienceguide.github.io/how-to-install-the-python-data-science-stack-on-a-remote-server http://pip.readthedocs.io/en/latest/user_guide/#requirements-files http://pip.readthedocs.io/en/latest/reference/pip_install/#requirements-file-format Using a Requirements File “Requirements files” are files containing a list of items to be installed using pip install. 1. Open a text editor and create a text file and name it whatever you like (in this case, python-requirements.txt). Place this file in your root/home folder: numpy scipy matplotlib pandas sympy Seaborn […]
How To Install Virtualenv & Django Framework
https://www.digitalocean.com/community/tutorials/how-to-install-the-django-web-framework-on-ubuntu-16-04 http://tutorial.djangogirls.org/en/django_start_project/ The Python virtualenv package allows you to create self-contained environments for various projects. Using this technology, you can install Django in a project directory without affecting the greater system. This allows you to provide per-project customizations and packages easily. Virtual environments add some slight mental and process overhead in comparison to globally accessible […]
How To Install Syncthing On Ubuntu 16.04 Using Vagrant
http://drup.org/setting-syncthing-ubuntu-1604-server https://docs.syncthing.net/intro/getting-started.html https://apt.syncthing.net/ $ curl -s https://syncthing.net/release-key.txt | sudo apt-key add – echo “deb http://apt.syncthing.net/ syncthing release” | sudo tee /etc/apt/sources.list.d/syncthing.list $ sudo apt-get update $ sudo apt-get install syncthing $ syncthing Ctrl-C to abort… $ sudo nano ~/.config/syncthing/config.xml change: <address>127.0.0.1:8080</address> to: <address>0.0.0.0:8080</address> USER=vagrant #or whatever $ sudo systemctl enable syncthing@$USER.service $ sudo systemctl start […]
How To Install iPython Jupyter Notebook On Ubuntu 16.04 Using Vagrant
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-jupyter-notebook-to-run-ipython-on-ubuntu-16-04 First, in Vagrantfile make sure the forwarded ports reflect the code below (Jupyter notebook uses port 8888): config.vm.network “forwarded_port”, guest: 8888, host: 8888 or (you can access iPython Jupyter at 127.0.0.1 instead of 127.0.0.1:888): config.vm.network “forwarded_port”, guest: 8888, host: 80 1. Install Python 2.7 and Pip First login to vm with ssh: $ vagrant […]