- have one entry for each account in the
~/.ssh/config
file
For the secondary Github account, choose a different Host
value.
Host github.{SECONDARY_KEYWORD}.com
deb http://deb.debian.org/debian/ jessie main contrib non-free | |
deb-src http://deb.debian.org/debian/ jessie main contrib non-free | |
deb http://security.debian.org/ jessie/updates main contrib non-free | |
deb-src http://security.debian.org/ jessie/updates main contrib non-free |
~/.ssh/config
fileFor the secondary Github account, choose a different Host
value.
Host github.{SECONDARY_KEYWORD}.com
# ------------- | |
# Author: Karen Ng <mailto:[email protected]> | |
# dependency: wget | |
# usage: | |
# source THIS_SCRIPT.sh | |
# ------------- | |
# set per project settings | |
export CONDA_ENV=general | |
export INTEL_PYTHON_VERSION=2018.0.0 | |
export PY_VERSION=35 |
# ------------- | |
# Author: Karen Ng <mailto:[email protected]> | |
# dependency: wget | |
# usage: | |
# source install_py${PYTHON_VERSION}_${INTEL_PYTHON_VERSION}.sh | |
# | |
# Copyright (c) 2017, Intel Corporation | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: |
if [[ -z $CONDA_ENV ]]; then | |
echo "CONDA_ENV is not defined. Quitting installation script." | |
exit 1 | |
fi | |
if [[ $NERSC_HOST == "cori"* ]]; then | |
DIR=/global/common/cori/software/python/3.5-anaconda | |
module load python/3.5-anaconda | |
echo 'On Cori: echo finish loading python/3.5-anaconda' | |
import gc | |
import os | |
import time | |
import numpy as np | |
import pandas as pd | |
from pyarrow.compat import guid | |
import pyarrow as pa | |
import pyarrow.parquet as pq | |
import snappy |