-
Notifications
You must be signed in to change notification settings - Fork 151
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
pip issue - PIL installation no longer working #9
Comments
Hi Johan. Not sure how involved you are with this but no matter what THANKS! I am trying to install the framework (14.04) and even after the changes with PIP I still have issues after your note. In the end I googled how to install PIP manually and commented that line out of the script so it could go on... Let's see how it goes with the rest. thanks !! |
Change line 116 in install.sh to this: pip install lxml beautifulsoup requests mitmproxy ipaddr publicsuffix twisted cryptacular Flask_SQLAlchemy
pip install --no-index -f http://dist.plone.org/thirdparty/ -U PIL I think it installed this way... (I do not really remmember if I changed anything else and did it fully work) |
Thanks. But tried it separately and still get an error: Could not find a version that satisfies the requirement PIL (from versions: ) |
It seams like PIL is depracted and Pillow is fork that is still maintained... Try installing Pillow instead... |
Thanks Sir! 2016-09-01 15:50:31 INFO snoopy_server.py: Main Snoopy Process starting. Divert all power to the engines! |
When you try to run install.sh it will try to execute pip and install PIL. However some things have changed and due to this the installation will fail on line 116.
Line 116 of install.sh (AS-IS)
pip install lxml beautifulsoup requests PIL mitmproxy ipaddr publicsuffix twisted cryptacular Flask_SQLAlchemy
To resolve this issue lijne 116 needs to be changed to the below:
pip install lxml beautifulsoup requests mitmproxy ipaddr publicsuffix twisted cryptacular Flask_SQLAlchemy
And a second line needs to be added to be able to install PIL seperatly. New line shown below:
pip install PIL --allow-external PIL --allow-unverified PIL
This will give the following codeblock:
116 pip install lxml beautifulsoup requests mitmproxy ipaddr publicsuffix twisted cryptacular Flask_SQLAlchemy
117 pip install PIL --allow-external PIL --allow-unverified PIL
118 if [ "$?" -ne 0 ]; then echo "[!] Failed :("; exit 1; fi
119
Regards,
Johan
The text was updated successfully, but these errors were encountered: