Skip to content

Instantly share code, notes, and snippets.

View sbenario's full-sized avatar

Steven Benario sbenario

  • Pivotal
  • New York City
View GitHub Profile
@sneal
sneal / windowsdiego.md
Last active May 13, 2023 15:01
Add Windows diego to dev pcf

This builds upon the exsting PcfDev Vagrant box by adding a Windows 2012R2 cell capable of hosting .NET 4.5 applications.

Bring up the PcfDev Vagrant box

Add the following provisioner block before the existing provisioner block in the PcfDev Vagrantfile and before you initially bring up the box:

  # Special provisioner to support Windows Cells
 config.vm.provision "shell", run: "once" do |s|
@hdemers
hdemers / pydata-science.sh
Last active June 1, 2020 07:17
Installation instructions for doing data science in a Python environment on Ubuntu. We'll install base packages like numpy, scipy, scikit-learn and pandas. We also install the IPython Notebook interactive environment. This is a best practice recommendation for doing research-type work. We make use of virtualenvwrapper, but don't show how to inst…
mkvirtualenv datascience
sudo apt-get install python-scipy libblas-dev liblapack-dev gfortran
sudo apt-get install libffi-dev # for cryptography from scrapy
sudo apt-get install libxslt-dev # for libxml from scrapy
export BLAS=/usr/lib/libblas.so
export LAPACK=/usr/lib/liblapack.so
pip install numpy
pip install scipy
pip install scikit-learn
pip install pandas