Questions tagged [pandas]

20 questions
2
votes
1 answer

python in Ubuntu 20.04

I upgraded from Ubuntu 18.04 to Ubuntu 20.04. Python3.6 disappeared and python3.8 was automatically installed. I am now having trouble using numpy and pandas with python3.8. Attempts to install them are met with a message that they are already…
2
votes
1 answer

pandas 0.24.2 not getting installed in virtual environment without sudo

cat requirements.txt requests==2.22.0 pandas==0.24.2 I was getting a whole lot of errors. This was permission problem. When I did sudo pip3 install -r requirements.txt there were no errors and Successfully installed pandas-0.24.2. I am on Ubuntu…
anjanesh
  • 703
2
votes
1 answer

How can I solve "no module named '_lzma'"?

I am trying to run the BoltzTraP2 software installed in Ubuntu 20.04.1 LTS but I get this error. Kindly let me know how I can solve this. I have installed pandas and liblzma-dev, still I get the…
Sauko
  • 39
1
vote
0 answers

installing pandas on pypy3 fails

I have the following version of pypy: HP-Pavilion-15-Notebook-PC:~$ pypy3 --version Python 3.6.9 (7.3.2+dfsg-2~ppa1~ubuntu20.04, Sep 26 2020, 22:37:47) [PyPy 7.3.2 with GCC 9.3.0] I have updated setuptools, as other posts…
1
vote
0 answers

Installing RDKit and using Pandas

this is my first time writing here. I am starting to use RDKit but I found the installation very difficult. I have Ubuntu 20.04 LTS and python3 (anaconda). Following the procedures posted at de oficial website of rdkit I first try to install rdkit…
1
vote
2 answers

SyntaxError: invalid syntax when install pandas latest version

I am installing pandas new version 1.0.3 using below command pip3 install pandas. But I am getting below error Collecting pandas Using cached…
1
vote
0 answers

Problem installing pandas [aarch64-linux-gnu-gcc failed with exit status 1]

I'm having some trouble installing pandas. creating build/temp.linux-aarch64-3.5 creating build/temp.linux-aarch64-3.5/pandas creating build/temp.linux-aarch64-3.5/pandas/_libs aarch64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall…
mess1n
  • 51
1
vote
1 answer

Matrix with Python and Pandas

I have a file with linked data each two columns ( in this example is just 3, but could be more), in a tab delimited file: Names SampleA Names SampleB Names SamplesC Name1 5 Name3 7 Name1 8 Name2 9 …
abraham
  • 161
  • 1
  • 3
1
vote
1 answer

How to install pandas for python 2 and not on my default python 3.6?

I want to install pandas for python2 on my ubuntu 18.04. When I try to install pandas using pip install pandas I get: Requirement already satisfied: pandas in /home/apoorv/anaconda3/lib/python3.6/site-packages (0.24.1) Requirement already…
1
vote
1 answer

Fix dependencies pandas python3

Today I installed another package via pip3 install seaborn after doing so my pandas package seems to be broken and I have no idea how to fix it. I tried to uninstall and reinstall pandas, numpy and seaborn but always get the same error. "Missing…
0
votes
1 answer

Module not found in virtual environment: Pandas

I am running Ubuntu 20.04. I have create a virtual environment to run Odoo. In activating an app it returned an error saying ModuleNotFound: pandas. Pandas is installed globally. Can I install this only in the venv? Should I even want to do that?…
Barry
  • 1
0
votes
0 answers

Pandas installation error

I have installed ubuntu 20.04 on MacBook m1 (parallels) and I have a problem when try to install pandas on python3.6 (I have to use this versions because of work). It returns an error gcc, there is the link to my GitHub repository because the error…
0
votes
1 answer

i've got some issues with the installed Python 3.8.5 , whenever i try to import a package it shows an error which says : No module named '.....'

>>> import matplotlib.pyplot as plt Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'matplotlib'
0
votes
1 answer

ModuleNotFoundError: No module named 'pandas' occurs even if pandas is installed on my machine

I am using Ubuntu 16.04. I have python 2.7 and python 3.7 installed on machine. I have installed pandas on my machine. However when I try to import the pandas package it gives ModuleNotFoundError: No module named 'pandas' for both the versions The…
0
votes
1 answer

When I open terminal i find this message . how i resolve this?

I see This error when i open terminal. It occur after my failure in installing open cv and pandas on my computer. In this image the error is /home/ujjwal/anaconda3/bin/python: Error while finding module specification for…
1
2