(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| // | |
| // Backport of revision 3be0f06 to fix scroll bars appearing due to rulers | |
| // | |
| // https://github.com/marijnh/CodeMirror/commit/3be0f06 | |
| // | |
| (function() { | |
| "use strict"; | |
| CodeMirror.defineOption("rulers", false, function(cm, val, old) { |
I hereby claim:
To claim this, I am signing this object:
These instructions install the most recent development version of Calliope, rather than the most recent stable version, alongside all requirements to solve a simple Calliope model using GLPK. For larger problems, it is recommended to additionally install Gurobi.
Download and install miniconda from here: http://conda.pydata.org/miniconda.html
Open a command prompt and run the following commands:
| name: vis-tutorial | |
| channels: | |
| - conda-forge | |
| - defaults | |
| dependencies: | |
| - basemap=1.0.8.dev0 | |
| - basemap-data-hires=1.0.8.dev0 | |
| - bokeh=0.12.4 | |
| - cartopy=0.15.1 | |
| - holoviews=1.6.2 |
| mapbox_access_token = 'PASTE_YOUR_TOKEN_HERE' | |
| import plotly.offline as py | |
| from plotly.graph_objs import * | |
| import plotly.graph_objs as go | |
| import pypsa | |
| py.init_notebook_mode(connected=True) | |
| %matplotlib inline |
To install the latest version of Calliope, you need to run three commands in order:
module load python/3.7.1
export PATH=~/.local/bin:$PATH
pip install --user --upgrade calliope| # extracted from http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_countries.zip | |
| # under public domain terms | |
| country_bounding_boxes = { | |
| 'AF': ('Afghanistan', (60.5284298033, 29.318572496, 75.1580277851, 38.4862816432)), | |
| 'AO': ('Angola', (11.6400960629, -17.9306364885, 24.0799052263, -4.43802336998)), | |
| 'AL': ('Albania', (19.3044861183, 39.624997667, 21.0200403175, 42.6882473822)), | |
| 'AE': ('United Arab Emirates', (51.5795186705, 22.4969475367, 56.3968473651, 26.055464179)), | |
| 'AR': ('Argentina', (-73.4154357571, -55.25, -53.628348965, -21.8323104794)), | |
| 'AM': ('Armenia', (43.5827458026, 38.7412014837, 46.5057198423, 41.2481285671)), |
| #!/bin/bash | |
| usage="$(basename "$0") [-h] [-p W R] -- program to run jupyter lab on a compute node, for remote access | |
| where: | |
| -h show this help text | |
| -p set the tunnelling port (default = 8889) | |
| -W set the runtime, in minutes (default = 960) | |
| -R set the memory allocation (default = 80G)" | |
| set -e |