If and only if you prefer to have your tools running locally (on your own machine), you should make sure to have Python 3.6+, git, a Unix terminal emulator, and Jupyter Notebook (or JupyterLab) installed. On Windows 10 machines, we suggest 'Ubuntu on Windows' (from the app store), which allows you to use Ubuntu Terminal and run Ubuntu command line utilities including bash and git. For Mac, you need to install Python 3.6+ and git. If Linux, well you're probably good.
Swiss army knife solution irrespective of OS: install Anaconda
!!!Disclaimer: We take no responsibility for your local installation.!!!
For running in virtual environment (recommended) and assuming python3.6+ is installed.
$ sudo pip3 install virtualenv
$ virtualenv -p /usr/bin/python3 venv
$ source venv/bin/activate
Clone repository and install requirements
$ git clone git@github.com:knielbo/cds-visual.git
$ pip3 install -r requirements.txt
[TBA] for your desired CUDA version.
This repository has the following directory structure:
.
├── dat/
│ ├── README.md
│ └── series2d/
├── examples/
├── LICENSE.md
├── README.md
├── requirements.txt
└── src/
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request 😈
Kristoffer L. Nielbo
This project is licensed under the MIT License - see the LICENSE.md file for details
Software Carpentries