forked from victorlei/smop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,18 @@ | ||
smop -- matlab to python compiler | ||
|
||
Installation with easy_install | ||
============================== | ||
|
||
This is the preferred option, because easy_install takes care of | ||
everything -- finding the dowinload site, and installing the dependences | ||
(numpy and networkx). If you don't have easy_install, this is the | ||
perfect time to install it. It is a part of setuptools package located | ||
at http://pypi.python.org/pypi/setuptools. | ||
|
||
$ easy_install smop | ||
|
||
Binary Windows installer | ||
======================== | ||
|
||
Download it from github then run it, but you must make sure you have | ||
installed the dependences -- numpy and networkx. | ||
|
||
Installation from sources | ||
========================= | ||
|
||
$ tar zxvf smop.tar.gz | ||
$ cd smop | ||
$ python setup.py install [--user] | ||
|
||
If you use the --user option, don't forget to put | ||
your .local/bin into the search path (unix only). | ||
|
||
Installation from sources with pip | ||
================================== | ||
|
||
This is the preferred option, because pip takes | ||
care of everything -- finding the dowinload | ||
site, installing the dependences (numpy and | ||
networkx), etc. If you don't have pip, this | ||
is the perfect time to install it. | ||
|
||
$ pip install smop --user | ||
$ tar zxvf smop.tar.gz | ||
$ cd smop | ||
$ pip install . --user | ||
|
||
If you use the --user option, don't forget to | ||
put your .local/bin into the search path (unix only). |