Data Science
How to install the Python
cd ~/Downloads/
wget https://python.org/ftp/python/2.7.5/Python-2.7.5.tgzExtract and go to the dirctory:tar -xvf Python-2.7.5.tgz
cd Python-2.7.5Now, install using the command you just tried:./configure
make
sudo checkinstall
Como Instalar o Git no Ubuntu 14.04
Um método mais flexível de instalar o git é compilar o software através do fonte. Isso leva mais tempo e não será mantido através de seu gerenciador de pacotes, mas o permitirá baixar a versão mais recente e dará a você algum controle sobre as opções que incluir se quiser customizar.Antes de...
How to install the Shiny Server at Ubutu Linux
Article 01https://github.com/rstudio/shiny-server/wiki/Building-Shiny-Server-from-SourceArticle 02https://github.com/Cambridge-R-User-Group/CambRweb/wiki/Shiny-Server-tutorialAnalyse Log Error• Shiny Server log is at /var/log/shiny-server.log.• The default Shiny Server homepage you're seeing is...
How to do to Connect at Apache Webserver by Virtual Machine
1.Stop your VM and open its settings in the VirtualBox (OSE) Manager2.Go to the Network tab3.Select the network mode at your choice (bridged networking or host-only) (in the below example, I'm using host-only)If you want to use bridged networking, you've to select the right network adapter at Name....
How to do to install the FREETDS to connect in SQL Server on Linux
Englis - Articlehttps://askubuntu.com/questions/167491/connecting-ms-sql-using-freetds-and-unixodbc-isql-no-default-driver-specifiedTest connectionhttps://wagnerphp.wordpress.com/2009/06/14/conectando-o-linux-ao-sql-server-2000-via-odbc-ou-jdbc-parte-2/Portugues -...
Descompactar arquivo compactado com GZ no Linux
tar é o comando para manipular arquivos .tar. O hífen com diversas letras são parâmetros, onde cada letra significa uma função específica:•-x (eXtract) é para extrair os dados do arquivo .tar.gz (usado apenas para descompactar).•-c (Create) é para criar um arquivo tar (usado apenas para...
How to do to install the ODBC driver on Linux
UPDATE: I've included a list of items to consider when connecting to a Microsoft SQL Server from Linux here. Please review this if you're starting out and don't fully understand your possibly choices (using your programming language of choice's driver, using the Microsoft ODBC driver for linux, or...
VI - Como sobreviver
O vi é um dos editores mais antigos e eficientes que existe, seguem alguns comando úteis para utilização: :e arquivo - Abrir arquivo :w - Grava alteração :w arquivo - Grava alteração em "arquivo" :wq - Grava alteração e sai do vi :ce - Alinhamento centralizado...
Basic Command Line at Linux Ubuntu
gedit = edit filels = list of foldersls -l file = list of permission of filecd / = navigation between folderspwd = show up the three of pathchmod 777 file = full accesschmod 777 file = execute as administrator (the password will be required)chmod -R 777 teste (folder test and sub-folders)ip addr...
How to do to install Apache Webserver at Linux Ubuntu
Ubuntu comes with Apache and PHP and they are easily installed via the default Ubuntu Package Manager 'aptitude'.The advantage of using aptitude is that you will get any security updates from Ubuntu (if and when distributed) and dependencies are automatically taken care of.Apache InstallA basic...