Skip to content

Add instructions for installing snap-python. #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ snap-python
git clone git@github.com:snap-stanford/snap-python.git
git clone git@github.com:snap-stanford/snap.git

2. Then, run `make` from the top-level of `snap-python`. This will make the SNAP code into a Python module, using SWIG. Finally, it will run some Python tests in the `test` directory.
2. Then, run `make` from the top-level of `snap-python`. This will make the SNAP code into a Python module, using SWIG and run some Python tests in the `test` directory. Finally, it installs SNAP in Python's user libraries directory.

cd snap-python
make
cd swig
python setup.py install --user

From a Python interpreter, you should be able to import `snap` module:

Expand Down