问题
As the title suggested I have trouble installing Pillow on Python 3.5.2. I believe I already have pip and easyinstall preinstalled. I have viewed some tutorials and attempted to type '>$pip install Pillow' into the IDLE shell but it came back with a syntax error. I am new to programming and have no prior IT exprience so please be specific and put it in simple terms. My OS is Windows 10. Thanks.
回答1:
sudo pip3 install Pillow
- unix-style
pip install Pillow
- windows
http://pillow.readthedocs.io/en/3.1.x/installation.html
回答2:
Installing stuff on ms-windows is such a can of worms that it is probably easiest to use a specialized Python distribution for ms-windows, like Anaconda or Enghought. These come with a lot of packages pre-installed, and have their own package managers to make adding more stuff easier for you.
回答3:
Use pip install Pillow. It worked for me
来源:https://stackoverflow.com/questions/40827922/how-to-install-pillow-on-python-3-5