简体   繁体   中英

error in import pandas after installing it using pip

I installed pandas using pip and get the following message "pip install pandas Requirement already satisfied (use --upgrade to upgrade): pandas in /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages Cleaning up..."

When I load up python and try to import pandas, it says module not found. Please help

尝试在/ python * / lib / site-packages中找到您的pandas库,将dir添加到sys.path文件中。

Following the previous answer try this after opening a python shell:

import sys 
new_path = "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages" # or wherever your pip install drops things
sys.path.append(new_path)
import pandas

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM