sightmachine / SimpleCV

The Open Source Framework for Machine Vision
http://simplecv.org
BSD 3-Clause "New" or "Revised" License
2.69k stars 798 forks source link

fail to install SimpleCV on Ubuntu 14.04 #646

Open willard-yuan opened 10 years ago

willard-yuan commented 10 years ago

when I install SimpleCV on Ubuntu 14.04 and run the command sudo pip install -r requirements.txt, it throws an exception as follows:

willard@willard-PC~/python/cv/SimpleCV $ sudo pip install -r requirements.txt 
Requirement already satisfied (use --upgrade to upgrade): numpy in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): scipy in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 2))
Downloading/unpacking PIL (from -r requirements.txt (line 3))
  Could not find any downloads that satisfy the requirement PIL (from -r requirements.txt (line 3))
  Some externally hosted files were ignored (use --allow-external PIL to allow).
Cleaning up...
No distributions at all found for PIL (from -r requirements.txt (line 3))
Storing debug log for failure in /home/willard/.pip/pip.log

Someone can help me?

sksavant commented 10 years ago

Use 'pip install -r requirements.txt --allow-all-external --allow-unverified PIL'

On Sat, Jun 7, 2014 at 6:40 PM, Yong Yuan notifications@github.com wrote:

when I install SimpleCV on Ubuntu 14.04 and run the command sudo pip install -r requirements.txt, it throws an exception as follows:

willard@willard-PC~/python/cv/SimpleCV $ sudo pip install -r requirements.txt Requirement already satisfied (use --upgrade to upgrade): numpy in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 1)) Requirement already satisfied (use --upgrade to upgrade): scipy in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 2)) Downloading/unpacking PIL (from -r requirements.txt (line 3)) Could not find any downloads that satisfy the requirement PIL (from -r requirements.txt (line 3)) Some externally hosted files were ignored (use --allow-external PIL to allow). Cleaning up... No distributions at all found for PIL (from -r requirements.txt (line 3)) Storing debug log for failure in /home/willard/.pip/pip.log

Someone can help me?

— Reply to this email directly or view it on GitHub https://github.com/sightmachine/SimpleCV/issues/646.

Savant Krishna | Senior Undergraduate | Electrical Engineering | IIT Bombay sksavant.net

willard-yuan commented 10 years ago

Thanks. I run sudo pip install -r requirements.txt --allow-unverified PIL, now it's successful.