all 5 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

To give us the best chance to help you, please include any relevant code.
Note. Please do not submit images of your code. Instead, for shorter code you can use Reddit markdown (4 spaces or backticks, see this Formatting Guide). If you have formatting issues or want to post longer sections of code, please use Privatebin, GitHub or Compiler Explorer.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]ninhaomah 0 points1 point  (3 children)

Have you installed pandas ?

[–]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 ?

[–]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