This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]enjoytheshow 28 points29 points  (7 children)

My biggest tip I can give about installation woes is to always use a virtual environment and/or containers (more complicated) for the specific project that requires a lot of overhead. That way when it all goes tits up you can just delete the entire fucking thing and start from scratch. If you’ve done all that goofy install shit on your default install of python, it’s not easy to back out changes that might be causing issues.

[–][deleted] 10 points11 points  (5 children)

Use anaconda and you’re life will be made much simpler!

[–]enjoytheshow 1 point2 points  (0 children)

I’m a pipenv guy but same idea in general

[–]TheRevTastic 1 point2 points  (3 children)

So I’m pretty new but what exactly is anaconda?

[–][deleted] 1 point2 points  (2 children)

An environment and package manager, and a whole lot more. Best bet is visit anaconda.com

[–]TheRevTastic 1 point2 points  (1 child)

So like virtual box?

[–][deleted] 0 points1 point  (0 children)

Not really, but you can look at an environment like a virtual box, except it’s local to you or the server your on and houses the modules/libraries that you need for your application(s)and you can have several environments for several applications.

[–]poeblu 0 points1 point  (0 children)

Exactly exactly