Last active
December 20, 2015 23:48
-
-
Save joshwentz/6214690 to your computer and use it in GitHub Desktop.
install energyplus onto an ubuntu 12.04 linux server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Open Terminal & move to where you want to install | |
#Install git: sudo apt-get install git-core | |
#git clone https://gist.github.com/6214690.git | |
#cd 6214690/ | |
#sh energyplus.sh | |
#Download EnergyPlus | |
sudo wget http://developer.nrel.gov/downloads/buildings/energyplus/builds/EnergyPlus-7.2.0.006-Linux-64.tar.gz | |
sudo tar xzf EnergyPlus-7.2.0.006-Linux-64.tar.gz | |
find EnergyPlus-7-2-0-006/bin/ -type f -perm -o+rx; | |
#Test Run EnergyPlus | |
cd EnergyPlus-7-2-0-006/bin/ | |
./runenergyplus ../Examples/BasicsFiles/Exercise1A.idf ../WeatherData/USA_CA_San.Francisco.Intl.AP.724940_TMY3.epw |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment