wasd
wasd

Reputation: 1572

Install pandas for python3.7 Ubuntu 18.04

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

Answers (1)

MartinKondor
MartinKondor

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

Related Questions