First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
This is most reliable way that I've found to install python modules:
change to the scripts folder (where pip.exe is) inside the main folder of the python version you want to install the module for, e.g. C:\Python27\Scripts
install the module using pip: pip install pandas
done In my experience this is best way to ensure that the module will be found when trying to import. It also avoids conflicts between 32 bit and 64 bit versions when they are installed in the user profile folder.
2 | No.2 Revision |
This is most reliable way that I've found to install python modules:
change to the scripts folder (where pip.exe is) inside the main folder of the python version you want to install the module for, e.g.
e.g.
C:\Python27\Scripts
install the module using pip:
pip:
pip install pandas
done
Done.
In my experience this is best way to ensure that the module will be found when trying to import. It also avoids conflicts between 32 bit and 64 bit versions when they are installed in the user profile folder.