How to install the Pandas library in Python 3

2

I would like to know how to install the Pandas library in Manjaro, in Python version 3.4.3 -

    
asked by anonymous 08.04.2015 / 19:45

3 answers

3

I used the command:

sudo pacman -S  python-pandas 

And it worked:)

    
08.04.2015 / 21:11
0

In general, the pip3 install pandas command should work if you have pip3 installed. To check you can also use the command which pip3 which should return the location where it is installed.

If you use the Anaconda package manager, you can also install Pandas with the command conda install pandas .

    
14.05.2017 / 22:51
0

Whenever you use pip3 install pandas you should give permission, that is, always use as: sudo pip3 install pandas

    
27.08.2017 / 00:38