0
Guys, I have a problem to import panda library and numpy for my project, when I try to run on pycharm... the following code, this error presents:
code:
import pandas as pd
import numpy as np
error:
Traceback (most recent call last):
File "/home/moises/Documentos/curso de python/Curso-Ciencia-de-Dados-master/Amostragem/amostragem1.py", line 1, in <module>
import pandas as pd
ModuleNotFoundError: No module named 'pandas'
Any suggestions?
And are these packages installed? How did you install it? What version of Python are you using?
– Woss
@Andersoncarloswoss I downloaded the anaconda, but I don’t know what to do. Came a file with extension ". sh" (I’ve never seen this extension). My version of Pyhton is 3.7.
– Moises Moraes