Reputation: 1572
I'm having issues with installation pandas under python3.7 on Ubuntu. I created virtual environment with python3.7, but pip install pandas
takes forever to install and eventually stops. I managed to install pandas for python3.6 with simple sudo apt-get install python3-pandas
, but can't find proper way to install it for python3.7
Upvotes: 2
Views: 8867
Reputation: 432
Run:
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev
sudo apt-get install python3-pandas
or
sudo -H pip3 install pandas
Upvotes: 3