-
Eddie McWhirter authoredEddie McWhirter authored
Readme dependencies
Windows
Install
- You will need a terminal tool for Windows. We used Git Bash to test these steps, but Cygwin or another unix-like editor should work fine too.
- Choosing PATH environment: We recommend the last option here to include Unix tools, but if you don't understand what that entails then use the second option which still adds Git to your system PATH.
- Besides that, all of the defaults should be sufficient.
- Install Anaconda, which includes
numpy
,scipy
andflake8
.
- We recommend using "Just Me" for the install to avoid potential admin issues.
-
Run
python
to verify that Anaconda's version of Python is being used. If it isn't, update your PATH so that Conda's HOME is before any other versions of Python. -
Head back over to the main install and complete the instructions there.
Develop
These instructions only need to be completed if you plan on developing new code for this project.
- Install the newest release of Node for Windows, using the Windows Installer (.msi).
- Use all of the defaults.
-
Close and re-open your terminal so that your new PATH is loaded. Make sure to navigate back to your
geomag-algorithms
project directory. -
Install
obspy
from the terminal.easy_install obspy
Mac
-
Install
python
(2.7.X)On OS X, we recommend using Homebrew ( http://brew.sh/ )
-
Install numpy, obspy requires this be installed separately.
pip install numpy
-
Install
node
,git
andpython
(2.7.X). On OS X, we recommend using Homebrewbrew install node brew install git
-
Use pip to install
numpy
,scipy
,obspy
, andflake8
pip install numpy scipy obspy flake8
-
Update paths as needed in your
~/.bash_profile
:export PATH=$PATH:/usr/local/bin` # npm installed binaries export PATH=$PATH:/usr/local/share/npm/bin # gem installed binaries export PATH=$PATH:/usr/local/opt/ruby/bin
-
Close and re-open your terminal so that your new PATH is loaded. Make sure to navigate back to your
geomag-algorithms
project directory. -
Head back over to the main install and complete the instructions there.
Add an SSH Key to GitHub
This only needs to be completed if you plan on developing and pushing new code to this project.
-
ssh-keygen -t rsa -b 2048
(in terminal) - Press Enter to accept the default save location.
- Enter a passphrase that you will remember.
-
cat ~/.ssh/id_rsa.pub
Copy the text block that is displayed. This is your SSH key. If you're on Window and can't copy the text from the terminal, go toC:\Users\[your username here]\.ssh
and open theid_rsa.pub
file with notepad. - In GitHub, click Edit Your Profile.
- Select SSH Keys on the left.
- Click Add SSH key. Give it a meaningful title.
- Copy your SSH Key into the Key, and click Add key.