GraphLab-Create Module not being installed on Python 3.5 (ubuntu)

5.2k Views Asked by At

I used this command: pip install --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/email_address/token/GraphLab-Create-License.tar.gz

But got this error: Could not find a version that satisfies the requirement graphlab-create>=2.1 (from GraphLab-Create-License==2.1) (from versions: ) No matching distribution found for graphlab-create>=2.1 (from GraphLab-Create-License==2.1)

I tried downloading the file and installing it manually but that also didn't solve the issue.

3

There are 3 best solutions below

0
On

That's because the module works only with Python 2.7.x as per install docs.

0
On

here is the link telling you how to change python version in anaconda. enter link description here

Graphlab is not compatible with python3 and you have to change your python version to 2.7. It should work.

2
On

As it was written in previous answers, you should use Python 2.7 instead of the 3.5 one.

Use pip2.7, because pip may be associated with the Python 3.5:

pip2.7 install --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/email_address/token/GraphLab-Create-License.tar.gz