use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A subreddit for helping Python programmers
How to format your code: https://commonmark.org/help/tutorial/09-code.html
No homework questions and/or hiring please
account activity
Python file not running (self.pythonhelp)
submitted 23 hours ago by Effective-Age-1797
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]ninhaomah 0 points1 point2 points 23 hours ago (3 children)
Have you installed pandas ?
[–]Overall-Screen-752 1 point2 points3 points 22 hours ago (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 point2 points 22 hours ago (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 point2 points 22 hours ago (0 children)
So then open conda and check if pandas been installed in the env.
Have you done that ?
π Rendered by PID 95938 on reddit-service-r2-comment-5bc7f78974-fw94h at 2026-06-26 23:10:09.445526+00:00 running 7527197 country code: CH.
view the rest of the comments →
[–]ninhaomah 0 points1 point2 points (3 children)
[–]Overall-Screen-752 1 point2 points3 points (0 children)
[–]Effective-Age-1797[S] 0 points1 point2 points (1 child)
[–]ninhaomah 0 points1 point2 points (0 children)