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

change python-igraph to igraph #112

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions INSTALL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Install the latest version (Python Console)

Install the *current* release of ``py4cytoscape`` with ``pip``::

pip install python-igraph requests pandas networkx colorbrewer chardet decorator backoff colour
pip install igraph requests pandas networkx colorbrewer chardet decorator backoff colour
pip install py4cytoscape


Expand All @@ -75,19 +75,19 @@ Install the development version (Python Console)
To install the *latest* py4cytoscape development version, instead
of ``pip install py4cytoscape``, use::

pip install python-igraph requests pandas networkx colorbrewer chardet decorator backoff colour
pip install igraph requests pandas networkx colorbrewer chardet decorator backoff colour
pip install git+https://github.com/cytoscape/py4cytoscape.git

To install the py4cytoscape branch (for example 0.0.10) version, instead
of ``pip install py4cytoscape``, use::

pip install python-igraph requests pandas networkx colorbrewer chardet decorator backoff colour
pip install igraph requests pandas networkx colorbrewer chardet decorator backoff colour
pip install git+https://github.com/cytoscape/[email protected]

Alternately, to install *a particular* py4cytoscape development version (e.g., 0.0.11), instead
of ``pip install py4cytoscape``, use::

pip install python-igraph requests pandas networkx colorbrewer chardet decorator backoff colour
pip install igraph requests pandas networkx colorbrewer chardet decorator backoff colour
git clone git://github.com/cytoscape/[email protected]

Verify Cytoscape connection
Expand Down
2 changes: 1 addition & 1 deletion doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ networkx
requests
colorbrewer
chardet
python-igraph
igraph
sphinx_autodoc_typehints
sphinx_rtd_theme
ipykernel
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
'pandas',
'networkx',
'requests',
'python-igraph',
'igraph',
'colorbrewer',
'chardet',
'decorator',
Expand Down