1

I am trying to use graph-tool, but am unable to find it in pip or pypi

How can I get it when not using conda?

Please notice I am NOT refering to graph-tools

Gulzar
  • 23,452
  • 27
  • 113
  • 201

3 Answers3

3

Because this is a binary package, it can't be installed with pip only. The package maintainers have explained the issue here, along with various methods to install.

(Using conda is one way but there are many other ways to install depending on your OS and how you want to do it.)

Dan R
  • 1,412
  • 11
  • 21
-5

One can install graph-tool using pip with the following command-

pip install --user graphtools

If this is not working than another way to install it is from github using the following command-

pip install --user git+git://github.com/KrishnaswamyLab/graphtools.git

Here is a detailed article on the same. Hope this helps!

-6

Write in your terminal pip3 install graph-tools I guess you, it will help you a lot.

Suyash
  • 1
  • 3