-
Notifications
You must be signed in to change notification settings - Fork 2
installation
Michael Rice edited this page Jul 8, 2015
·
1 revision
simdeplower is a python package and it can be installed a couple of ways depending on which version you want to run. The recommended way to install simdeplower is to use pip It is also highly recommended that you install simdeplower into a virtualenv. Doing this will allow the user to easily update with out any other python libraries being changed on the system. Here is how I install simdeplower using pip
$ virtualenv ~/venvs/simdeplower
$ source ~/venvs/simdeplower/bin/activate
(pyvenv: simdeplower) $ pip install -U simdeplower
This will install everything simdeplower needs into ~/venvs/simdeplower if ever you decide you no longer want simdeplower simply delete the ~/venvs/simdeplower directory and it will be gone.
To install the latest version of code found in GitHub it is still best to use a virtualenv. Here is a best practices way to do it:
$ git clone https://github.com/virtdevninja/simdeplower.git
$ virtualenv ~/venvs/simdeplower-github
$ source ~/venvs/simdeplower-github/bin/activate
(pyenv: simdeplower) $ cd simdeplower
(pyenv: simdeplower) $ python setup.py install