Skip to content
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

Update PyPI url in README.rst #13

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
15 changes: 7 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sage-train-track
================

Free group automorphisms and train-track representatives in python/sage.
Free group automorphisms and train-track representatives in Python/Sage.

This is a Sage optional package. It contains code to handle free group
automorphisms (inversion, composition, etc.) and to compute
Expand All @@ -17,33 +17,32 @@ Installation::

Warning: it seems that Mac OS X 10.13 and later has a security
conflict between SIP and SSL and does not succeed in downloading the
package from https://pypi.python.org. To overcome this difficulty,
package from https://pypi.org. To overcome this difficulty,
just download the tarball train_track-0.1.2.tar.gz from

https://pypi.python.org/simple/train_track
https://pypi.org/simple/train_track

and run::

sage -pip install /path/to/train_track-0.1.2.tar.gz

Warning: if you lack intstallation privilege, you can install only for
Warning: if you lack installation privilege, you can install only for
yourself::

sage -pip install --user train_track

On Cocalc.com installation can be done either from a terminal as above
or from a cell::
On [CoCalc](https://cocalc.com) install either from a terminal as above
or from a cell in a Jupyter worksheet::

!sage -pip install train_track

Warning, Cocalc free accounts do not have access to internet, first
Warning: CoCalc free accounts do not have access to internet, first
download the tarball then install.

Usage::

sage: from train_track import *


After this command, you can play with free groups and their automorphisms::

sage: FreeGroup('a,b,c')
Expand Down