问题
I have windows 10 (64 bit). I want to utilize the Openpyxl
package to start learning how to interact with excel and other spreadsheets.
I installed Python with "windowsx86-64web-basedinstaller"
I have a 64 bit OS, was I mistaken when trying to install this version?
回答1:
You need to ensure that C:\Python35\Sripts
is in your system path. Follow the top answer instructions here to do that:
You run the command in windows command prompt, not in the python interpreter that you have open.
Press:
Win + R
Type CMD
in the run window which has opened
Type pip install openpyxl
in windows command prompt.
回答2:
I had to do: c:\Users\xxxx>c:/python27/scripts/pip install openpyxl
I had to save the openpyxl files in the scripts folder.
回答3:
(optional) Install git for windows (https://git-scm.com/) to get git bash. Git bash is much more similar to Linux terminal than Windows cmd.
Install Anaconda 3
https://www.anaconda.com/download/
It should set itself into Windows PATH. Restart your PC. Then pip should work in your cmd
Then in cmd (or git bash), run command
pip install openpyxl
回答4:
- https://pypi.python.org/pypi/openpyxl download zip file and unzip it on local system.
- go to openpyxl folder where setup.py is present.
- open command prompt under the same path.
- Run a command: python setup.py install
- It will install openpyxl.
回答5:
- Go to https://pypi.org/project/openpyxl/#files
- Download the file and unzip in your pc in the main folder, there's a file call setup.py
- Install with this command: python setup.py install
来源:https://stackoverflow.com/questions/38364404/how-to-install-openpyxl-with-pip