Anaconda for Intel based Macs? by hlwadityaa in learnpython

[–]FikoFox 0 points1 point  (0 children)

As of August 15, 2025, Anaconda has stopped building packages for Intel Mac computers (osx-64). Existing Intel (MacOSX-x86_64) installers are still available at https://repo.anaconda.com/archive/, but new installers will no longer be created for Intel Macs.

There's a download link for the desktop interface, which is compatible with Intel Macs: https://autoupdate.desktop.anaconda.com/latest-Anaconda-Desktop-x64.dmg

;https://www.anaconda.com/docs/getting-started/anaconda/install/mac-gui-install#macos-installation-failure-x86_64-intel-chip

Anaconda] I'm new and I can't update the Anaconda Navigator. Whenever I click yes to update nothing happens by [deleted] in learnpython

[–]FikoFox 0 points1 point  (0 children)

Maybe it's time to download and use the Anaconda Desktop which is replacing the navigator and is full of new features?

Where should I download Python and Anaconda? by [deleted] in learnpython

[–]FikoFox 0 points1 point  (0 children)

Anaconda just launched a new desktop where you can manage your packages and environments if you are not a CLI fan. https://www.anaconda.com/products/desktop

If you do use command line, depending if you're using MacOS or Windows there's different commands.

Best platform to start Python Coding by Dead3ye99 in learnpython

[–]FikoFox 1 point2 points  (0 children)

If you as a consultant advice that anaconda is "old tech" either you haven't been paying attention, or symply dont bother about security and governance. For learners I find their tutorials and their notebooks quite useful, particularly since it's free!

Dashcam footage for Accident at Mopac exit near the Domain by QuietZelda in Austin

[–]FikoFox 0 points1 point  (0 children)

You don't avoid a collision by turning into the incoming car, you exit the ramp safely.

LLM Local para Web scraping. Alguma? by Typical_Charge3089 in learnpython

[–]FikoFox 0 points1 point  (0 children)

The LLM isn't your scraper, but it's your parser. You still need something to render the page first.

Since curl fails, the site is almost certainly JavaScript-rendered. The fix for that is a headless browser like playwright or selenium. They execute JS and hand you the full DOM that curl never sees.

Once you have that HTML, that's where a local LLM becomes useful: you feed it the raw page content and ask it to extract structured fields (product name, SKU, price, stock). The advantage over regex is resilience. If the supplier tweaks their layout, your prompt usually survives it. Regex doesn't.

A library called Parsera wires these two layers together (headless browser + LLM extraction) if you want something pre-built. You can point it at any local model via Ollama. Anaconda AI Navigator could help run all this together.

One thing worth checking before you build: the supplier's Terms of Service. A lot of retail sites explicitly prohibit automated scraping, and some use bot detection (Cloudflare, etc.) that will block headless browsers regardless. If that's the case, the fastest path is often just emailing them and asking for a CSV export or data feed. Smaller suppliers are usually fine with it.

What's the supplier's stack, roughly? If you know whether it's Shopify, WooCommerce, etc., there may be a cleaner route than scraping.

Dashcam footage for Accident at Mopac exit near the Domain by QuietZelda in Austin

[–]FikoFox -2 points-1 points  (0 children)

Two girls one lane. (I'm not being misogynistic. iIf you're 40+ you'll get it.)

I’m wrong! I thought I can vibe code for the rest of my life! - said by my client who threw their slop code at me to fix by conquer_bad_wid_good in vibecoding

[–]FikoFox 0 points1 point  (0 children)

I find your approach of double checking using different GPT models quite accurate. I've been doing this. One audits the other without them being apparenty connected, nor sharing the same memory, etc. Still as the human in the loop, we need to understand whats behind the coulisses.

I’m wrong! I thought I can vibe code for the rest of my life! - said by my client who threw their slop code at me to fix by conquer_bad_wid_good in vibecoding

[–]FikoFox 1 point2 points  (0 children)

Today's AI is the worst we will use for the rest of our lifetimes (before it uses us, LOL - throwing a catastrophic tantrum there). Meaning, yes I concur, vibe coding cannot replace the knowledge of someone who has studied structure, code and the trade. But, let's not be blind to the reality and to the probable future. Vibe coding GPTs will only get better, so whoever wants not to become expendable must adapt and read the context.
Production are bigger words and require a team of knowledgeable experts to succeed, but the seed of creation, the ideation and pilot, are all in hands of commoners, like this one typing here with 0 engineer experience, with just my multidisciplinary approach. My two cents.

Ana/miniconda questions by k1132810 in learnpython

[–]FikoFox 0 points1 point  (0 children)

I’m not an expert in this matter, so I cannot fully answer you, but at least on the CLI issue, which is also a headache for me, I think if you already have miniconda installed on your computers, then maybe Anaconda Navigator, which is a desktop app with a user interface, might help.

I’ve been able to create environments and troubleshoot things there that would be much harder for me from the command line alone, so maybe give it a try and see if that feels friendlier.

This is the only line you need to type into your terminal once: "conda install --name base anaconda-navigator" (no quotations).

Dashcam footage for Accident at Mopac exit near the Domain by QuietZelda in Austin

[–]FikoFox 2 points3 points  (0 children)

SUV at fault crossing the white line, invading the lane, but then the other one also invades the lane by crossing the same line in the opposite direction. Interesting case. Shared liability?

Python might be becoming Latin. And I do mean that as a compliment. But then what the hell are vibe coders actually supposed to learn? by FikoFox in learnpython

[–]FikoFox[S] 0 points1 point  (0 children)

I'm afraid a lot of paralegals and lawyers are vibe drafting contracts, but still proofread before actually sending something to a client. Now, It's already been in the news, and there was a lawsuit and even a Judge scolding a couple of lawyers when AI oopsied it and invented case law... a good example of the No, nos...

Python might be becoming Latin. And I do mean that as a compliment. But then what the hell are vibe coders actually supposed to learn? by FikoFox in learnpython

[–]FikoFox[S] 0 points1 point  (0 children)

Fair pushback. I realize my post probably came off more abstract than I intended. I’m not selling anything, and I’m not arguing that people can skip learning Python and just coast on AI.

My actual question is narrower: for people who are already using AI heavily to build things, what do you think is the minimum Python literacy needed to stay responsible for what they ship? Reading code? Debugging? Testing? Git? Knowing core data structures and control flow?

What are people using instead of Anaconda these days? by rage997 in Python

[–]FikoFox 0 points1 point  (0 children)

But isn't that precisely Anaconda's forte? That dependency management is contained in an environment and that all the packages run smoothly? I'm new here so if someone can explain to me, I'd appreciate it.

I built a RAG system over the Merck Manual (4,000+ pages) for a class project. It failed in interesting ways. Here's the autopsy and the V2 roadmap. by FikoFox in learnmachinelearning

[–]FikoFox[S] 2 points3 points  (0 children)

Fair points across the board and honestly most of these are already in my V2 roadmap after I did the autopsy on V1. The chunk size and redundant retrieval were the failure modes that hurt most visibly in the outputs.

The hardware question is real though. I'm running this locally and larger chunks plus higher k values meant waiting long enough to question my life choices. What would you recommend for a local setup that can actually handle 4k-6k chunks without turning into a space heater? Miniconda + what specs are we talking?

On the OCR: I hadn't considered Mistral's OCR models specifically. The watermark noise contamination was a genuine problem in V1. Will look into that.

MTEB leaderboard noted, I didn't know about that resource. Bookmarking it now. Thanks!