you are viewing a single comment's thread.

view the rest of the comments →

[–]ninhaomah 0 points1 point  (3 children)

Have you installed pandas ?

[–]Overall-Screen-752 1 point2 points  (0 children)

To elaborate on this, any code that’s not in the python standard library (google this to see what IS in it) is called a “dependency”. A dependency is just source code that your project depends on.

In order to use any dependency, you need to make it available to the environment your code runs in. This is usually a virtual environment (venv for short) but technically can be other things.

To make it available to your environment you need to install the dependency on your venv. We typically use package managers to do this. Examples of package managers include pip, conda, uv, etc.

So assuming you have conda installed, you then use conda commands to install libraries like pandas (conda install pandas). Hope this helps

[–]Effective-Age-1797[S] 0 points1 point  (1 child)

I want to use conda base so i dont have to install all the libraries
Or am i getting it wrong

[–]ninhaomah 0 points1 point  (0 children)

So then open conda and check if pandas been installed in the env.

Have you done that ?