StephanAkkerman / FluentAI

Automating language learning with the power of Artificial Intelligence. This repository presents FluentAI, a tool that combines Fluent Forever techniques with AI-driven automation. It streamlines the process of creating Anki flashcards, making language acquisition faster and more efficient.
https://akkerman.ai/FluentAI/
MIT License
9 stars 1 forks source link

Create Seperate folder explaining pyenv for virtual python env #97

Open WinstonLam opened 2 days ago

WinstonLam commented 2 days ago
  1. Description:

    • Problem: Currently the project doesn't offer clear support for python venv
    • Solution: Created a dedicated folder with a ReadME on how users can achieve this
    • Prerequisites: installation of pyenv
  2. Tasks:

    • Add folder
    • Add ReadME
      • install pyenv
      • eval "$(pyenv init --path)" (might be needed if homebrew installation of pyenv)
      • pyenv install pythonversion (install your needed python version)
      • pyenv local pythonversion (set the local python version for your project)
      • run python -m venv yourenvname.env
      • source yourevnname.env/bin/activate (to activate the python venv)
StephanAkkerman commented 2 days ago

Is dit niet voor elke python project hetzelfde? Of moeten users echt wat anders doen voor dit tov een ander python project?