Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.01 KB

install.md

File metadata and controls

66 lines (42 loc) · 1.01 KB

Installing round-py:

Prerequisites:

  • Python 2.7
  • Git and a python extension build environment.
  • libffi

Virtualenv (optional)

  1. Install virtualenv & wrapper
$ pip install --user virtualenv
$ pip install --user virtualenvwrapper
  1. Edit your ~/.bashrc or ~/.bash_profile
export PATH="${HOME}/.local/bin:${PATH}"
export WORKON_HOME="${HOME}/.virtualenvs"
source ${HOME}/.local/bin/virtualenvwrapper.sh
  1. Make an environment
$ mkvirtualenv round

Linux (apt)-based)

  1. Just install
$ pip install round

[back]

Mac OSX:

  1. Just install
$ pip install round

[back]

Windows:

TODO

Heroku

Heroku introduces some complexities around libsodium (PyNaCl), the cryptography library round uses.

  1. Include the following in your requirements.txt.
round

[back]